Summary: | Window size too small | ||
---|---|---|---|
Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
Component: | general | Assignee: | kst |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.x | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Andrew Walker
2005-03-17 19:40:33 UTC
One solution to this would be to remove the call to setMinimumSize(...) in KstViewWidget and the _assert on a null pixmap in kst2dplot.cpp. If there are no other suggestions I'll implement this. On Thursday 17 March 2005 19:35, Andrew Walker wrote:
> ------- One solution to this would be to remove the call to
> setMinimumSize(...) in KstViewWidget and the _assert on a null pixmap in
> kst2dplot.cpp. If there are no other suggestions I'll implement this.
I suggest following the preconditions of KstViewObject, and not allowing
breakage in the code by allowing invalid view objects to exist.
CVS commit by staikos: use KMDI's own size hint BUG: 101725 M +1 -1 kst.cpp 1.296 M +1 -1 kstdoc.cpp 1.155 --- kdeextragear-2/kst/kst/kst.cpp #1.295:1.296 @@ -1798,5 +1798,5 @@ QString KstApp::newWindow(const QString& w->setCaption(nameToUse); w->setTabCaption(nameToUse); - addWindow(w); + addWindow(w, KMdi::StandardAdd | KMdi::UseKMdiSizeHint); w->activate(); updateDialogsForWindow(); --- kdeextragear-2/kst/kst/kstdoc.cpp #1.154:1.155 @@ -350,5 +350,5 @@ bool KstDoc::openDocument(const KURL& ur p = new KstViewWindow(e); - app->addWindow(p); + app->addWindow(p, KMdi::StandardAdd | KMdi::UseKMdiSizeHint); p->activate(); if (toDelete) { |