Changeset f6b29929 in mainline
- Timestamp:
- 2025-04-08T14:23:26Z (6 days ago)
- Children:
- 17964f6
- Parents:
- 651dde7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/clock.c
r651dde7 rf6b29929 219 219 } 220 220 221 /** Launch date configuration application */ 222 static errno_t taskbar_clock_launch_date_cfg(void) 223 { 224 task_id_t id; 225 const char *args[] = { "/app/date_cfg", NULL }; 226 return task_spawnv(&id, NULL, args[0], args); 227 } 228 221 229 /** Handle taskbar clock position event. 222 230 * … … 233 241 if (!gfx_pix_inside_rect(&pos, &clock->rect)) 234 242 return ui_unclaimed; 243 244 if (event->type == POS_PRESS) { 245 taskbar_clock_launch_date_cfg(); 246 } 235 247 236 248 return ui_claimed;
Note:
See TracChangeset
for help on using the changeset viewer.