Show the note list in a wide view above the editor.
| 3073 | //* Show the note list in a wide view above the editor. |
| 3074 | //********************************************************************* |
| 3075 | void NixNote::viewNoteListWide() { |
| 3076 | menuBar->blockSignals(true); |
| 3077 | menuBar->viewNoteListNarrow->setChecked(false); |
| 3078 | menuBar->viewNoteListWide->setChecked(true); |
| 3079 | menuBar->blockSignals(false); |
| 3080 | |
| 3081 | saveNoteColumnPositions(); |
| 3082 | saveNoteColumnWidths(); |
| 3083 | noteTableView->saveColumnsVisible(); |
| 3084 | |
| 3085 | rightPanelSplitter->setOrientation(Qt::Vertical); |
| 3086 | global.listView = Global::ListViewWide; |
| 3087 | noteTableView->setColumnsVisible(); |
| 3088 | noteTableView->repositionColumns(); |
| 3089 | noteTableView->resizeColumns(); |
| 3090 | } |
| 3091 | |
| 3092 | |
| 3093 |
nothing calls this directly
no test coverage detected