diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | mdkapplet | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,8 @@ o when a new distro is available: * add an "upgrade system" in the menu * ask for confirmation before performing distro upgrade + * default to "Install updates" instead of distro upgrade on left + click on icon if there're updates * if there're updates, install regular updates instead of performing distro upgrade on left click * only show "Install updates" in right menu only if there're @@ -595,6 +595,7 @@ sub setState { $bubble->add_action('clicked', N("Upgrade the system"), \&upgrade); if ($sub_state eq 'updates') { push @arr, 'update'; + $bubble->add_action('clicked', N("Install updates"), \&installUpdates); } } elsif ($state eq 'updates') { $bubble->add_action('clicked', N("Install updates"), \&installUpdates); |