Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/compositor/compositor.c

    r2c7fdaa rc072a29  
    9090        link_t link;
    9191        atomic_t ref_cnt;
    92         window_flags_t flags;
    9392        service_id_t in_dsid;
    9493        service_id_t out_dsid;
     
    636635        sysarg_t pos_id = IPC_GET_ARG1(*icall);
    637636        sysarg_t grab_flags = IPC_GET_ARG2(*icall);
    638        
    639         /*
    640          * Filter out resize grab flags if the window
    641          * is not resizeable.
    642          */
    643         if ((win->flags & WINDOW_RESIZEABLE) != WINDOW_RESIZEABLE)
    644                 grab_flags &= ~(GF_RESIZE_X | GF_RESIZE_Y);
    645637
    646638        fibril_mutex_lock(&pointer_list_mtx);
     
    911903                                return;
    912904                        }
    913                        
    914                         win->flags = IPC_GET_ARG1(call);
    915905
    916906                        char name_in[LOC_NAME_MAXLEN + 1];
     
    18951885                fibril_mutex_lock(&window_list_mtx);
    18961886                window_t *win = (window_t *) list_first(&window_list);
    1897                 if ((win) && (win->surface) && (win->flags & WINDOW_RESIZEABLE)) {
     1887                if (win && win->surface) {
    18981888                        window_event_t *event = (window_event_t *) malloc(sizeof(window_event_t));
    18991889                        if (event == NULL) {
Note: See TracChangeset for help on using the changeset viewer.