From 48a527872d47f8e2e5139cdc24ccf240d569bbe5 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 22 Mar 2008 18:23:47 +0000 Subject: Removed Win32 keep-dialogs-on-top preference, now set permanently to true (bzr r5160) --- src/dialogs/dialog-events.cpp | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'src/dialogs/dialog-events.cpp') 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) -- cgit v1.2.3