Bauble / bauble.classic

this is how Bauble and Ghini both started
GNU General Public License v2.0
10 stars 34 forks source link

initialize bottom notebook in separate function #138

Closed mfrasca closed 9 years ago

mfrasca commented 9 years ago

currently, the only plugin which writes in bottom_info is the Tags plugin. the information in bottom_info describes the tags page in the bottom notebook.

at the moment the bottom notebook receives its pages at the very last moment, that is the first time update_bottom_notebook is invoked. it could be done earlier, and the function performing the action could be unit-tested.

or it could be done, as now, at the very last moment, but in a unit-tested function.

mfrasca commented 9 years ago

7da763d

mfrasca commented 9 years ago

works for me. it's not practical to focus on unit testing while I'm considering a rewrite / restructure.