diff options
| author | Joel Holdsworth <joel@airwebreathe.org.uk> | 2008-03-22 18:23:47 +0000 |
|---|---|---|
| committer | joelholdsworth <joelholdsworth@users.sourceforge.net> | 2008-03-22 18:23:47 +0000 |
| commit | 48a527872d47f8e2e5139cdc24ccf240d569bbe5 (patch) | |
| tree | 6d27e16f9857b8aeedf52be297682827a9e46f9f /src/dialogs/dialog-events.cpp | |
| parent | Fixed skipping of blank lines in .gpl files (diff) | |
| download | inkscape-48a527872d47f8e2e5139cdc24ccf240d569bbe5.tar.gz inkscape-48a527872d47f8e2e5139cdc24ccf240d569bbe5.zip | |
Removed Win32 keep-dialogs-on-top preference, now set permanently to true
(bzr r5160)
Diffstat (limited to 'src/dialogs/dialog-events.cpp')
| -rw-r--r-- | src/dialogs/dialog-events.cpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/dialogs/dialog-events.cpp b/src/dialogs/dialog-events.cpp index 637f8ef57..3443a6ccb 100644 --- a/src/dialogs/dialog-events.cpp +++ b/src/dialogs/dialog-events.cpp @@ -157,11 +157,8 @@ sp_transientize (GtkWidget *dialog) gint transient_policy = prefs_get_int_attribute_limited ( "options.transientpolicy", "value", 1, 0, 2 ); -#ifdef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs - if (prefs_get_int_attribute ( "options.dialogsontopwin32", "value", 0)) - transient_policy = 2; - else - transient_policy = 0; +#ifdef WIN32 // Win32 special code to enable transient dialogs + transient_policy = 2; #endif if (transient_policy) { @@ -186,11 +183,8 @@ sp_transientize_callback ( Inkscape::Application * /*inkscape*/, { gint transient_policy = prefs_get_int_attribute_limited ( "options.transientpolicy", "value", 1, 0, 2); -#ifdef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs - if (prefs_get_int_attribute ( "options.dialogsontopwin32", "value", 0)) - transient_policy = 2; - else - return; +#ifdef WIN32 // Win32 special code to enable transient dialogs + transient_policy = 2; #endif if (!transient_policy) |
