Changes in uspace/app/taskbar/clock.c [95fc538:1172326] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/clock.c
r95fc538 r1172326 1 1 /* 2 * Copyright (c) 2025 Wayne Michael Thornton (WMT) <wmthornton-dev@outlook.com> 2 3 * Copyright (c) 2022 Jiri Svoboda 3 4 * All rights reserved. … … 219 220 } 220 221 222 /** Launch date configuration application */ 223 static errno_t taskbar_clock_launch_date_cfg(void) 224 { 225 task_id_t id; 226 const char *args[] = { "/app/date_cfg", NULL }; 227 return task_spawnv(&id, NULL, args[0], args); 228 } 229 221 230 /** Handle taskbar clock position event. 222 231 * … … 233 242 if (!gfx_pix_inside_rect(&pos, &clock->rect)) 234 243 return ui_unclaimed; 244 245 if (event->type == POS_PRESS) { 246 taskbar_clock_launch_date_cfg(); 247 } 235 248 236 249 return ui_claimed;
Note:
See TracChangeset
for help on using the changeset viewer.