Skip to content

Commit

Permalink
#951, added some more debug messages for finding a problem under Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Jul 1, 2018
1 parent 5396ffc commit 48a2a1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,8 @@
## 18.07.0
- fixed updating the *note tags panel* after multiple notes were selected
(for [#946](https://github.com/pbek/QOwnNotes/issues/946))
- added some more debug messages for finding a problem under Windows
(for [#951](https://github.com/pbek/QOwnNotes/issues/951))

## 18.06.7
- tags in the `Move tag to...` context menu of the tag list are now sorted by name
Expand Down
3 changes: 2 additions & 1 deletion src/mainwindow.cpp
Expand Up @@ -2651,7 +2651,7 @@ bool MainWindow::buildNotesIndex(int noteSubFolderId, bool forceRebuild) {
bool hasNoteSubFolder = false;
bool wasModified = false;

// qDebug() << __func__ << " - 'noteSubFolderId': " << noteSubFolderId;
qDebug() << __func__ << " - 'noteSubFolderId': " << noteSubFolderId;

if (noteSubFolderId == 0) {
// make sure we destroy nothing
Expand Down Expand Up @@ -6639,6 +6639,7 @@ void MainWindow::reloadTagTree() {
* Reloads the note sub folder tree
*/
void MainWindow::reloadNoteSubFolderTree() {
qDebug() << __func__;
ui->noteSubFolderTreeWidget->clear();
int activeNoteSubFolderId = NoteSubFolder::activeNoteSubFolderId();
bool showAllNotesItem =
Expand Down

0 comments on commit 48a2a1b

Please sign in to comment.