Changeset de19d4a in mainline for uspace/lib/gui


Ignore:
Timestamp:
2020-06-26T20:41:14Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aef48ce
Parents:
78445be8
Message:

Clean up vestiges of visualizer interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gui/window.c

    r78445be8 rde19d4a  
    405405        errno_t rc;
    406406
    407         if (width < 2 * border_thickness + header_min_width) {
    408                 //win_damage(win->osess, 0, 0, 0, 0);
    409                 return;
    410         }
    411 
    412         if (height < 2 * border_thickness + header_height) {
    413                 //win_damage(win->osess, 0, 0, 0, 0);
    414                 return;
    415         }
     407        if (width < 2 * border_thickness + header_min_width)
     408                return;
     409
     410        if (height < 2 * border_thickness + header_height)
     411                return;
    416412
    417413        fibril_mutex_lock(&win->guard);
Note: See TracChangeset for help on using the changeset viewer.