| Summary: | Hiding the javaScript Console also hides plot windows | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andrew Walker
2006-07-05 21:14:29 UTC
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
|