| Summary: | changing plugin modifies mdi mode | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | filippo santovito <filippo.santovito> |
| Component: | UI: all modes | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | filippo.santovito, jonsmirl |
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
filippo santovito
2003-12-03 01:11:24 UTC
*** Bug 69544 has been marked as a duplicate of this bug. *** Subject: kdevelop/src CVS commit by dymo: Save mdi settings (mdi mode) after switching the mode, but not before. Reviewed by teatime. CCMAIL: 69535-done@bugs.kde.org M +12 -12 mainwindow.cpp 1.61 --- kdevelop/src/mainwindow.cpp #1.60:1.61 @@ -1165,5 +1165,4 @@ void MainWindow::switchToToplevelMode() m_bUiModeSwitchPending = true; - saveMDISettings(); m_toggleViewbar->setEnabled(true); if (mdiMode() == KMdi::TabPageMode || mdiMode() == KMdi::IDEAlMode) { @@ -1174,4 +1173,5 @@ void MainWindow::switchToToplevelMode() m_bUiModeSwitchPending = false; updateActionState(); + saveMDISettings(); } @@ -1181,5 +1181,4 @@ void MainWindow::switchToChildframeMode( m_bUiModeSwitchPending = true; - saveMDISettings(); m_toggleViewbar->setEnabled(true); if (mdiMode() == KMdi::TabPageMode || mdiMode() == KMdi::IDEAlMode) { @@ -1190,4 +1189,5 @@ void MainWindow::switchToChildframeMode( m_bUiModeSwitchPending = false; updateActionState(); + saveMDISettings(); } @@ -1197,5 +1197,4 @@ void MainWindow::switchToTabPageMode() m_bUiModeSwitchPending = true; - saveMDISettings(); if (isViewTaskBarOn()) { slotToggleViewbar(); @@ -1206,4 +1205,5 @@ void MainWindow::switchToTabPageMode() m_bUiModeSwitchPending = false; updateActionState(); + saveMDISettings(); } @@ -1213,5 +1213,4 @@ void MainWindow::switchToIDEAlMode() m_bUiModeSwitchPending = true; - saveMDISettings(); if (isViewTaskBarOn()) { slotToggleViewbar(); @@ -1222,4 +1221,5 @@ void MainWindow::switchToIDEAlMode() m_bUiModeSwitchPending = false; updateActionState(); + saveMDISettings(); } |