removed putWindowPosition() calls; this is now done in GuiWindow::on_hide()

This commit is contained in:
fgerlits 2006-08-07 17:16:06 +00:00
parent f24055e72c
commit 5b27e430ed

View file

@ -304,7 +304,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
liveModeWindow && !liveModeWindow->is_visible()) { liveModeWindow && !liveModeWindow->is_visible()) {
updateLiveModeWindow(); updateLiveModeWindow();
} else { } else {
gLiveSupport->putWindowPosition(liveModeWindow);
liveModeWindow->hide(); liveModeWindow->hide();
} }
} }
@ -320,7 +319,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
scratchpadWindow && !scratchpadWindow->is_visible()) { scratchpadWindow && !scratchpadWindow->is_visible()) {
updateScratchpadWindow(); updateScratchpadWindow();
} else { } else {
gLiveSupport->putWindowPosition(scratchpadWindow);
scratchpadWindow->hide(); scratchpadWindow->hide();
} }
} }
@ -337,7 +335,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
!simplePlaylistMgmtWindow->is_visible()) { !simplePlaylistMgmtWindow->is_visible()) {
updateSimplePlaylistMgmtWindow(); updateSimplePlaylistMgmtWindow();
} else { } else {
gLiveSupport->putWindowPosition(simplePlaylistMgmtWindow);
simplePlaylistMgmtWindow->hide(); simplePlaylistMgmtWindow->hide();
} }
} }
@ -353,7 +350,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
schedulerWindow && !schedulerWindow->is_visible()) { schedulerWindow && !schedulerWindow->is_visible()) {
updateSchedulerWindow(); updateSchedulerWindow();
} else { } else {
gLiveSupport->putWindowPosition(schedulerWindow);
schedulerWindow->hide(); schedulerWindow->hide();
} }
} }
@ -369,7 +365,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
searchWindow && !searchWindow->is_visible()) { searchWindow && !searchWindow->is_visible()) {
updateSearchWindow(); updateSearchWindow();
} else { } else {
gLiveSupport->putWindowPosition(searchWindow);
searchWindow->hide(); searchWindow->hide();
} }
} }
@ -385,7 +380,6 @@ class MasterPanelWindow : public Gtk::Window, public LocalizedObject
optionsWindow && !optionsWindow->is_visible()) { optionsWindow && !optionsWindow->is_visible()) {
updateOptionsWindow(); updateOptionsWindow();
} else { } else {
gLiveSupport->putWindowPosition(optionsWindow);
optionsWindow->hide(); optionsWindow->hide();
} }
} }