diff options
| author | Gellule Xg <gellule.xg@gmail.com> | 2011-06-28 07:21:00 +0000 |
|---|---|---|
| committer | Gellule Xg <gellule.xg@gmail.com> | 2011-06-28 07:21:00 +0000 |
| commit | 3c55244d2a6df1645e9af8dfe05b71fb737a2903 (patch) | |
| tree | 7aa4a825ca18bb7b26f7be6897873175c6c91e80 /src/widgets/desktop-widget.cpp | |
| parent | If GTK is built with the QUARTZ backend, there is no need to expect DISPLAY t... (diff) | |
| download | inkscape-3c55244d2a6df1645e9af8dfe05b71fb737a2903.tar.gz inkscape-3c55244d2a6df1645e9af8dfe05b71fb737a2903.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 r10381.2.1)
Diffstat (limited to 'src/widgets/desktop-widget.cpp')
| -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); } } |
