Changeset 7aa9fa1b in mainline


Ignore:
Timestamp:
2023-10-13T20:28:47Z (7 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
489f405
Parents:
5d9403d5
Message:

Taskbar needs to avoid receiving premature events

This would often crash it during startup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/taskbar.c

    r5d9403d5 r7aa9fa1b  
    189189        }
    190190
    191         ui_window_set_cb(taskbar->window, &window_cb, (void *)taskbar);
    192 
    193191        rc = ui_fixed_create(&taskbar->fixed);
    194192        if (rc != EOK) {
     
    275273
    276274        ui_window_add(taskbar->window, ui_fixed_ctl(taskbar->fixed));
     275        ui_window_set_cb(taskbar->window, &window_cb, (void *)taskbar);
    277276
    278277        rc = ui_window_paint(taskbar->window);
Note: See TracChangeset for help on using the changeset viewer.