diff options
| author | Gellule Xg <gellule.xg@gmail.com> | 2011-06-29 06:35:56 +0000 |
|---|---|---|
| committer | Gellule Xg <gellule.xg@gmail.com> | 2011-06-29 06:35:56 +0000 |
| commit | e392b9ed3b9e084ef442b82e764c5bf204eaa191 (patch) | |
| tree | 1b1035ac1b5c86b53ff6ee7a3dcdd6d60fa2f9bb /src/widgets | |
| parent | Remove references to Xft from configure.ac (diff) | |
| parent | Replaced a 'reshow_with_initial_size' by a simple 'resize', to address what l... (diff) | |
| download | inkscape-e392b9ed3b9e084ef442b82e764c5bf204eaa191.tar.gz inkscape-e392b9ed3b9e084ef442b82e764c5bf204eaa191.zip | |
Replaced a 'reshow_with_initial_size' by a simple 'resize', to address what looks like a GTK/QUARTZ backend issue, without functionality loss.
Fixed bugs:
- https://launchpad.net/bugs/487144
(bzr r10384)
Diffstat (limited to 'src/widgets')
| -rw-r--r-- | src/widgets/desktop-widget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp index e7bc3691b..028138a10 100644 --- a/src/widgets/desktop-widget.cpp +++ b/src/widgets/desktop-widget.cpp @@ -1108,7 +1108,7 @@ SPDesktopWidget::setWindowSize (gint w, gint h) if (window) { window->set_default_size (w, h); - window->reshow_with_initial_size (); + window->resize (w, h); } } |
