Changeset 86120 in vbox for trunk/src/VBox
- Timestamp:
- Sep 14, 2020 10:39:46 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/VBoxDbgGui.cpp
r82968 r86120 238 238 VBoxDbgGui::adjustRelativePos(int x, int y, unsigned cx, unsigned cy) 239 239 { 240 /* Disregard a width less than 640 since it will mess up the console. */ 241 if (cx < 640) 240 /* Disregard a width less than 640 since it will mess up the console, 241 * but only if previos width was already initialized.. */ 242 if ((cx < 640) && (m_cx > 0)) 242 243 cx = m_cx; 243 244
Note:
See TracChangeset
for help on using the changeset viewer.