Should we alternate the note list colors?
| 378 | |
| 379 | // Should we alternate the note list colors? |
| 380 | bool Global::alternateNoteListColors() { |
| 381 | bool alternateNoteListColors; |
| 382 | settings->beginGroup("Appearance"); |
| 383 | alternateNoteListColors = settings->value("alternateNoteListColors", true).toBool(); |
| 384 | settings->endGroup(); |
| 385 | return alternateNoteListColors; |
| 386 | } |
| 387 | |
| 388 | // Save the position of a column in the note list. |
| 389 | void Global::setColumnPosition(QString col, int position) { |