~inkscape.dev/inkscape/trunk

« back to all changes in this revision

Viewing changes to src/dialogs/dialog-events.cpp

  • Committer: joelholdsworth
  • Date: 2008-03-22 18:23:47 UTC
  • Revision ID: joelholdsworth@users.sourceforge.net-20080322182347-z33lpqe083nlf1we
Removed Win32 keep-dialogs-on-top preference, now set permanently to true

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
 
158
158
    gint transient_policy = prefs_get_int_attribute_limited ( "options.transientpolicy", "value", 1, 0, 2 );
159
159
 
160
 
#ifdef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
161
 
    if (prefs_get_int_attribute ( "options.dialogsontopwin32", "value", 0))
162
 
        transient_policy = 2;
163
 
    else
164
 
        transient_policy = 0;
 
160
#ifdef WIN32 // Win32 special code to enable transient dialogs
 
161
    transient_policy = 2;
165
162
#endif
166
163
 
167
164
    if (transient_policy) {
186
183
{
187
184
    gint transient_policy = prefs_get_int_attribute_limited ( "options.transientpolicy", "value", 1, 0, 2);
188
185
 
189
 
#ifdef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
190
 
    if (prefs_get_int_attribute ( "options.dialogsontopwin32", "value", 0))
191
 
        transient_policy = 2;
192
 
    else
193
 
        return;
 
186
#ifdef WIN32 // Win32 special code to enable transient dialogs
 
187
    transient_policy = 2;
194
188
#endif
195
189
 
196
190
    if (!transient_policy)