Skip to content

Commit

Permalink
fix height
Browse files Browse the repository at this point in the history
Signed-off-by: knopalex <[email protected]>
  • Loading branch information
alexknop committed Jan 31, 2025
1 parent c151888 commit 8738325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/ResolveConflictsDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ 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
minimumHeight: 200
title: qsTr('Solve sync conflicts')

onClosing: function(close) {
Expand Down

0 comments on commit 8738325

Please sign in to comment.