Changeset 8eeffc1 in mainline for uspace/app/taskbar/wndlist.c
- Timestamp:
- 2024-06-29T00:49:17Z (11 months ago)
- Children:
- 9a664b6d
- Parents:
- af3235d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/wndlist.c
raf3235d r8eeffc1 232 232 233 233 entry->visible = false; 234 entry->maximized = true; 234 235 235 236 ui_pbutton_set_light(entry->button, active); … … 722 723 dev_id = entry->wndlist->ev_idev_id; 723 724 724 (void) wndmgt_activate_window(entry->wndlist->wndmgt, 725 dev_id, entry->wnd_id); 725 if (!entry->maximized) { 726 (void) wndmgt_activate_window(entry->wndlist->wndmgt, 727 dev_id, entry->wnd_id); 728 729 entry->maximized = true; 730 } else { 731 (void) wndmgt_deactivate_window(entry->wndlist->wndmgt, 732 dev_id, entry->wnd_id); 733 734 entry->maximized = false; 735 } 726 736 } 727 737
Note:
See TracChangeset
for help on using the changeset viewer.