Browse Source

Fixed a bug in tab labels that lead to wrong labels being marked as changed if a reordering of the tabs had been done.

merge-requests/365/head
eidheim 10 years ago
parent
commit
a1e529aab0
  1. 2
      src/notebook.cc

2
src/notebook.cc

@ -165,7 +165,7 @@ void Notebook::open(const boost::filesystem::path &file_path) {
}
}
if(page!=-1)
tab_labels.at(page)->label.set_text(title);
tab_labels.at(get_index(page))->label.set_text(title);
});
JDEBUG("end");

Loading…
Cancel
Save