Show the note list in a narrow view between the editor & left panel.
| 3095 | //* Show the note list in a narrow view between the editor & left panel. |
| 3096 | //********************************************************************* |
| 3097 | void NixNote::viewNoteListNarrow() { |
| 3098 | |
| 3099 | menuBar->blockSignals(true); |
| 3100 | menuBar->viewNoteListWide->setChecked(false); |
| 3101 | menuBar->viewNoteListNarrow->setChecked(true); |
| 3102 | menuBar->blockSignals(false); |
| 3103 | |
| 3104 | saveNoteColumnPositions(); |
| 3105 | saveNoteColumnWidths(); |
| 3106 | noteTableView->saveColumnsVisible(); |
| 3107 | |
| 3108 | rightPanelSplitter->setOrientation(Qt::Horizontal); |
| 3109 | global.listView = Global::listViewNarrow; |
| 3110 | noteTableView->setColumnsVisible(); |
| 3111 | noteTableView->repositionColumns(); |
| 3112 | noteTableView->resizeColumns(); |
| 3113 | } |
| 3114 | |
| 3115 | |
| 3116 |
nothing calls this directly
no test coverage detected