MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / viewNoteListNarrow

Method viewNoteListNarrow

nixnote.cpp:3097–3113  ·  view source on GitHub ↗

Show the note list in a narrow view between the editor & left panel.

Source from the content-addressed store, hash-verified

3095//* Show the note list in a narrow view between the editor & left panel.
3096//*********************************************************************
3097void 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

Callers

nothing calls this directly

Calls 4

saveColumnsVisibleMethod · 0.80
setColumnsVisibleMethod · 0.80
repositionColumnsMethod · 0.80
resizeColumnsMethod · 0.80

Tested by

no test coverage detected