~inkscape.dev/inkscape/trunk

« back to all changes in this revision

Viewing changes to src/ui/dialog/inkscape-preferences.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:
484
484
    _win_ontop_normal.init ( _("Normal"), "options.transientpolicy", "value", 1, true, &_win_ontop_none);
485
485
    _win_ontop_agressive.init ( _("Aggressive"), "options.transientpolicy", "value", 2, false, &_win_ontop_none);
486
486
 
487
 
// FIXME: Temporary Win32 special code to enable transient dialogs
488
 
#ifdef WIN32
489
 
    _win_ontop_win32.init ( _("Dialogs stay on top (experimental!)"), "options.dialogsontopwin32", "value", false);
490
 
#endif
491
 
 
492
487
    _page_windows.add_group_header( _("Saving window geometry (size and position):"));
493
488
    _page_windows.add_line( false, "", _win_save_geom_off, "",
494
489
                            _("Let the window manager determine placement of all windows"));
503
498
    _page_windows.add_line( true, "", _win_floating, "",
504
499
                            _("Floating"));
505
500
 
506
 
    _page_windows.add_group_header( _("Dialogs on top:"));
507
 
#ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
 
501
#ifndef WIN32 // non-Win32 special code to enable transient dialogs
 
502
        _page_windows.add_group_header( _("Dialogs on top:"));
 
503
 
508
504
    _page_windows.add_line( true, "", _win_ontop_none, "",
509
505
                            _("Dialogs are treated as regular windows"));
510
506
    _page_windows.add_line( true, "", _win_ontop_normal, "",
511
507
                            _("Dialogs stay on top of document windows"));
512
508
    _page_windows.add_line( true, "", _win_ontop_agressive, "",
513
509
                            _("Same as Normal but may work better with some window managers"));
514
 
#else
515
 
    _page_windows.add_line( false, "", _win_ontop_win32, "",
516
 
                            _("Whether dialogs should stay on top of document windows. Read the ReleaseNotes on this issue! (Rightclick the taskbar button and press 'Restore' to bring back a minimized document window)"));
517
510
#endif
518
511
 
519
512
    _page_windows.add_group_header( _("Miscellaneous:"));