diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-02-19 08:21:40 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-02-19 08:21:40 +0000 |
| commit | 892e4caf0531a7399b558829cc5c856297f7a813 (patch) | |
| tree | 7f581d1062f9d89cb8f802a5aeae85155d1d93bb /src/ui/dialog/dialog.cpp | |
| parent | speed up default scrolling a bit (diff) | |
| download | inkscape-892e4caf0531a7399b558829cc5c856297f7a813.tar.gz inkscape-892e4caf0531a7399b558829cc5c856297f7a813.zip | |
now at least the first opening of the first gtkmm dialog opens it in-place without jumping. still can't make it work for all cases.
(bzr r2397)
Diffstat (limited to 'src/ui/dialog/dialog.cpp')
| -rw-r--r-- | src/ui/dialog/dialog.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ui/dialog/dialog.cpp b/src/ui/dialog/dialog.cpp index 61ee2dd91..64109de3f 100644 --- a/src/ui/dialog/dialog.cpp +++ b/src/ui/dialog/dialog.cpp @@ -170,9 +170,6 @@ Dialog::Dialog(const char *prefs_path, int verb_num, const char *apply_label) set_title(title); } - sp_transientize(dlg); - retransientize_suppress = false; - gtk_signal_connect( GTK_OBJECT (dlg), "event", GTK_SIGNAL_FUNC(sp_dialog_event_handler), dlg ); _hiddenF12 = false; @@ -195,6 +192,8 @@ Dialog::Dialog(const char *prefs_path, int verb_num, const char *apply_label) read_geometry(); present(); + sp_transientize(dlg); + retransientize_suppress = false; } Dialog::Dialog(BaseObjectType *gobj) |
