Changeset 102706 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 27, 2023 9:22:23 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UIAdvancedSettingsDialog.cpp
r102704 r102706 318 318 /* Prepare right painter paths: */ 319 319 QPainterPath painterPath2; 320 painterPath2.moveTo(contentRect.width() / 2 + 1, contentRect.y());321 painterPath2.lineTo(contentRect.width(), 322 painterPath2.lineTo(contentRect.width() - contentRect.height(),contentRect.height());323 painterPath2.lineTo(contentRect.width() / 2 + 1- contentRect.height(), contentRect.height());320 painterPath2.moveTo(contentRect.width() / 2, contentRect.y()); 321 painterPath2.lineTo(contentRect.width(), contentRect.y()); 322 painterPath2.lineTo(contentRect.width() - contentRect.height(), contentRect.height()); 323 painterPath2.lineTo(contentRect.width() / 2 - contentRect.height(), contentRect.height()); 324 324 painterPath2.closeSubpath(); 325 325 … … 353 353 const QColor foreground1 = suitableForegroundColor(pal, backColor1); 354 354 const QString strName1 = text1(); 355 const QPoint point1 = QPoint(contentRect.left() + 5 /** @todo justify! */, contentRect.height() / 2 + fm.ascent() / 2 - 1 /* base line */); 355 const QPoint point1 = QPoint(contentRect.left() + 5 /** @todo justify! */, 356 contentRect.height() / 2 + fm.ascent() / 2 - 1 /* base line */); 356 357 const QColor foreground2 = suitableForegroundColor(pal, backColor2); 357 358 const QString strName2 = text2();
Note:
See TracChangeset
for help on using the changeset viewer.