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/ui/dialog/dock-behavior.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/ui/dialog/dock-behavior.cpp')
| -rw-r--r-- | src/ui/dialog/dock-behavior.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ui/dialog/dock-behavior.cpp b/src/ui/dialog/dock-behavior.cpp index 4f6fe64bc..6f3df89da 100644 --- a/src/ui/dialog/dock-behavior.cpp +++ b/src/ui/dialog/dock-behavior.cpp @@ -218,11 +218,8 @@ DockBehavior::onDesktopActivated(SPDesktop *desktop) { 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) |
