Changeset 497


Ignore:
Timestamp:
Jan 31, 2010, 10:20:20 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

gui/kernel: Use a normal border for top-level Tool widgets since the thin one is too thin and cannot be resized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/kernel/qwidget_pm.cpp

    r476 r497  
    10691069                        fcFlags |= FCF_DLGBORDER;
    10701070                    } else if (tool) {
    1071                         fcFlags |= FCF_BORDER;
     1071                        // note: while it's common that top-level tool widgets
     1072                        // have a thiner frame, FCF_BORDER makes it too thin and
     1073                        // it even cannot be resized. So, use FCF_SIZEBORDER too.
     1074                        fcFlags |= FCF_SIZEBORDER;
    10721075                    } else {
    10731076                        fcFlags |= FCF_SIZEBORDER;
Note: See TracChangeset for help on using the changeset viewer.