From 144cec5562b99b608672620050a572bc8bcfe970 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 6 Apr 2021 17:50:22 +0200 Subject: [PATCH] Apply clang-format --- misc/dialogutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dialogutils.cpp b/misc/dialogutils.cpp index 4565c43..85723e7 100644 --- a/misc/dialogutils.cpp +++ b/misc/dialogutils.cpp @@ -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; }