diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-16 10:35:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-16 10:35:09 +0000 |
commit | 8828242570fd982a9f604771497a1fccec9fe8e1 (patch) | |
tree | cbd6aedd02b12ea8415bacd5cbc23b5fc15a671e | |
parent | 1944f6c38a27a9acb9e1afff0f16fc0b6be6e639 (diff) | |
download | drakx-8828242570fd982a9f604771497a1fccec9fe8e1.tar drakx-8828242570fd982a9f604771497a1fccec9fe8e1.tar.gz drakx-8828242570fd982a9f604771497a1fccec9fe8e1.tar.bz2 drakx-8828242570fd982a9f604771497a1fccec9fe8e1.tar.xz drakx-8828242570fd982a9f604771497a1fccec9fe8e1.zip |
if the window is not modal, the main XFdrake window can block it :-(
-rw-r--r-- | perl-install/Xconfig/resolution_and_depth.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm index 5953f7a4e..bbbc3f889 100644 --- a/perl-install/Xconfig/resolution_and_depth.pm +++ b/perl-install/Xconfig/resolution_and_depth.pm @@ -218,7 +218,7 @@ sub choose_gtk { require ugtk2; mygtk2->import; ugtk2->import(qw(:create :helpers :wrappers)); - my $W = ugtk2->new(N("Resolution")); + my $W = ugtk2->new(N("Resolution"), modal => 1); my %monitor_images_x_res = do { my @l = qw(640 800 1024 1152 1280 1400 1600 1920 2048); |