*add* drag'n'drop task reordering
*fix* autohide and tooltip after SIGUSR1 *fix* send low_battery_cmd only once *fix* update clock if time difference > 60 sec (after hibernation or supsension) *fix* changed transient window behaviour git-svn-id: http://tint2.googlecode.com/svn/trunk@393 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
@@ -282,9 +282,8 @@ void update_battery() {
|
||||
new_percentage = (energy_now*100)/energy_full;
|
||||
|
||||
if(battery_low_status > new_percentage && battery_state.state == BATTERY_DISCHARGING && !battery_low_cmd_send) {
|
||||
if (battery_low_cmd)
|
||||
if (-1 != system(battery_low_cmd))
|
||||
battery_low_cmd_send = 1;
|
||||
system(battery_low_cmd); // return value == -1, since we've set SIGCHLD to SIGIGN
|
||||
battery_low_cmd_send = 1;
|
||||
}
|
||||
if(battery_low_status < new_percentage && battery_state.state == BATTERY_CHARGING && battery_low_cmd_send) {
|
||||
battery_low_cmd_send = 0;
|
||||
|
||||
Reference in New Issue
Block a user