Skip to content

Commit

Permalink
fix height
Browse files Browse the repository at this point in the history
Signed-off-by: knopalex <knopalex@msu.edu>
  • Loading branch information
alexknop committed Feb 3, 2025
1 parent 2b7a77b commit 765d950
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gui/ResolveConflictsDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ApplicationWindow {
LayoutMirroring.childrenInherit: true

width: Style.minimumWidthResolveConflictsDialog
height: Style.minimumHeightResolveConflictsDialog
height: Math.min(contentItem.height + 20, Screen.height * 0.8)
minimumWidth: Style.minimumWidthResolveConflictsDialog
minimumHeight: Style.minimumHeightResolveConflictsDialog
title: qsTr('Solve sync conflicts')
Expand Down
2 changes: 1 addition & 1 deletion theme/Style/Style.qml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ QtObject {
readonly property int bigFontPixelSizeResolveConflictsDialog: 20
readonly property int fontPixelSizeResolveConflictsDialog: 15
readonly property int minimumWidthResolveConflictsDialog: 600
readonly property int minimumHeightResolveConflictsDialog: 800
readonly property int minimumHeightResolveConflictsDialog: 200

readonly property double smallIconScaleFactor: 0.6

Expand Down

0 comments on commit 765d950

Please sign in to comment.