Apply clang-format

This commit is contained in:
Martchus 2021-04-06 17:50:22 +02:00
parent 0c07bdb10c
commit 144cec5562
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ static QMargins widgetFrame(QWidget *widget, const QMargins &defaultAssumption =
const auto widgetGeometry = widget->geometry();
const auto frameGeometry = widget->frameGeometry();
const auto frame = QMargins(widgetGeometry.left() - frameGeometry.left(), widgetGeometry.top() - frameGeometry.top(),
frameGeometry.right() - widgetGeometry.right(), frameGeometry.bottom() - widgetGeometry.bottom());
frameGeometry.right() - widgetGeometry.right(), frameGeometry.bottom() - widgetGeometry.bottom());
return frame.isNull() ? defaultAssumption : frame;
}