diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-10 08:45:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-10 08:45:08 +0000 |
commit | e8585f85cc90667f473801ebb89f34a7991cf8d3 (patch) | |
tree | c3f5e9ec86e84c65808e918223cf3b55bd7f2ecf | |
parent | e94bc9e186bbdb0688fe7a972fbd2ba8a3d2e621 (diff) | |
download | control-center-e8585f85cc90667f473801ebb89f34a7991cf8d3.tar control-center-e8585f85cc90667f473801ebb89f34a7991cf8d3.tar.gz control-center-e8585f85cc90667f473801ebb89f34a7991cf8d3.tar.bz2 control-center-e8585f85cc90667f473801ebb89f34a7991cf8d3.tar.xz control-center-e8585f85cc90667f473801ebb89f34a7991cf8d3.zip |
don't go back to main notebook page when clicking on title
since it's both not classic and result in hidden pending apps
-rw-r--r-- | ChangeLog | 26 | ||||
-rwxr-xr-x | control-center | 17 | ||||
-rw-r--r-- | drakconf.spec | 12 |
3 files changed, 36 insertions, 19 deletions
@@ -1,3 +1,29 @@ +2002-09-10 08:37 daouda + + * control-center: - fix banner bug (click but stay) + +2002-09-09 18:31 damien + + * control-center: avoid crash when clicking on the top pixmap when + no log window + +2002-09-09 17:52 daouda + + * drakconf.spec: - Restore normal cursor when exiting drakconf. + +2002-09-09 17:48 daouda + + * control-center: - set mouse cursor to normal when exiting + drakconf. + +2002-09-09 16:32 pablo + + * po/: eu.po, id.po, ro.po: updated po files + +2002-09-09 10:26 tvignaud + + * ChangeLog: [no log message] + 2002-09-09 10:25 tvignaud * control-center: - consolidate some code in fork_() diff --git a/control-center b/control-center index 7b3d2178..40680599 100755 --- a/control-center +++ b/control-center @@ -436,18 +436,6 @@ my ($pixmap_icon, undef) = gtkcreate_png('mcc-title-icon'); $fixed_title->put(my $darea_title = gtkset_usize(new Gtk::DrawingArea, 335, 55), 0, 0); # 335 -> 450 $fixed_title->signal_connect(realize => sub { $fixed_title->window->set_back_pixmap($pixmap_back, 0) }); -$darea_title->signal_connect(realize => sub { $darea_title->window->set_cursor($cursor_hand) }); -$darea_title->set_events([ 'button_release_mask' ]); -$darea_title->signal_connect(button_release_event => sub { - clean_socket(); - $notebook_global->show; - set_page(0); - foreach (@darea_left_list) { - $_->[1]->window->set_cursor($cursor_normal); - $_->[1]->{state} = 0; - $_->[1]->draw(undef); - } -}); $darea_title->signal_connect(expose_event => sub { my @dim = @{$_[1]->{area}}; @@ -848,9 +836,6 @@ sub get_main_menu { sub set_page { my ($index) = @_; - if ($index == 0) { - $still_in_splash_screen = 1; - defined $exp_frame and $exp_frame->hide; - } else { update_exp } + update_exp; $notebook_global->set_page($index); } diff --git a/drakconf.spec b/drakconf.spec index 967348ad..0211b7f8 100644 --- a/drakconf.spec +++ b/drakconf.spec @@ -5,7 +5,7 @@ Summary: The Mandrake Control Center Name: drakconf Version: %version -Release: 0.33mdk +Release: 1mdk # get the source from our cvs repository (see # http://www.linuxmandrake.com/en/cvs.php3) Source0: %name-%version.tar.bz2 @@ -105,8 +105,14 @@ rm -rf $RPM_BUILD_ROOT %_datadir/mcc/themes/kde %changelog -* Mon Sep 9 2002 Daouda LO <daouda@mandrakesoft.com> 9.0-0.33mdk -- Restore normal cursor when exiting drakconf. +* Mon Sep 9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.0-1mdk +- thierry: + o don't go back to main notebook page when clicking on title + since it's both not classic and result in hidden pending apps +- daouda & dams: + o fix banner crash +- daouda: + o Restore normal cursor when exiting drakconf. * Sat Sep 7 2002 Daouda LO <daouda@mandrakesoft.com> 9.0-0.32mdk - (fork / exec) replaces system for non embeddable app: |