Skip to content

Commit

Permalink
Maximum 3 columns.
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsenD98 committed Sep 1, 2024
1 parent f29caf8 commit 61665cd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/qml/PositioningInformationView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ Rectangle {
anchors.fill: parent
cellHeight: positioningInformationView.cellHeight
cellWidth: {
if (parent.width >= 1000)
return parent.width / 4;
else if (parent.width >= 620)
if (parent.width >= 620)
return parent.width / 3;
else if (parent.width >= 200)
return parent.width / 2;
Expand Down

0 comments on commit 61665cd

Please sign in to comment.