Version: 1.2.1 (using KDE KDE 3.5.0) Installed from: Compiled From Sources OS: Linux PROBLEM: When the user is using the JavaScript Console and selects Tools... Hide JavaScript Console all plots windows are also hidden. STEPS TO REPRODUCE: Start Kst If necessary select Settings...Extensions... and enable the JavaScript console Select Tools... Show JavaScript Console Create a plot in the default window Select Tools... Hide JavaScript Console RESULTS: The JavaScript Console and the plot window are hidden EXPECTED RESULTS: Only the JavaScript Console is hidden
Known, documented bug. It's in KMDI.
Wouldn't removing the call to _splitter->hide(); in KstJS::hideConsole() in js.cpp fix this?
Odd, yes, that is the problem. I'm sure I had found a related bug in KMDI in the past though. The container was disappearing completely when the splitter was deleted. Anyhow, please commit.
SVN commit 558759 by arwalker: BUG:130319 Do not hide the entire contents of the Kst frame when hiding the JavaScript Console M +0 -1 js.cpp --- trunk/extragear/graphics/kst/src/extensions/js/js.cpp #558758:558759 @@ -287,7 +287,6 @@ #ifdef KST_HAVE_READLINE _showAction->setText(i18n("Show &JavaScript Console")); if (_konsolePart) { - _splitter->hide(); _konsolePart->widget()->hide(); } #endif