Fix bug #5001: Tab order not preserved when starting lyx.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29530 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-05-04 11:48:23 +00:00
parent 546fa8c705
commit 2b21cd2f4e

View File

@ -534,7 +534,16 @@ void GuiView::closeEvent(QCloseEvent * close_event)
// e.g. when clicking the close button on a background window. // e.g. when clicking the close button on a background window.
setFocus(); setFocus();
setCurrentWorkArea(currentMainWorkArea()); setCurrentWorkArea(currentMainWorkArea());
while (GuiWorkArea * wa = currentMainWorkArea()) {
int splitter_count = d.splitter_->count();
for (; splitter_count > 0; --splitter_count) {
TabWorkArea * twa = d.tabWorkArea(0);
int twa_count = twa->count();
for (; twa_count > 0; --twa_count) {
twa->setCurrentIndex(0);
GuiWorkArea * wa = twa->currentWorkArea();
Buffer * b = &wa->bufferView().buffer(); Buffer * b = &wa->bufferView().buffer();
if (b->parent()) { if (b->parent()) {
// This is a child document, just close the tab // This is a child document, just close the tab
@ -587,7 +596,7 @@ void GuiView::closeEvent(QCloseEvent * close_event)
return; return;
} }
} }
}
// Make sure that nothing will use this close to be closed View. // Make sure that nothing will use this close to be closed View.
guiApp->unregisterView(this); guiApp->unregisterView(this);