Changeset de19d4a in mainline for uspace/lib


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

Location:
uspace/lib
Files:
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/meson.build

    r78445be8 rde19d4a  
    131131        'generic/io/console.c',
    132132        'generic/io/table.c',
    133         'generic/io/visualizer.c',
    134133        'generic/iplink.c',
    135134        'generic/iplink_srv.c',
  • 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.