Skip to content

Commit

Permalink
Fix typo in #55 and adjust file size margins
Browse files Browse the repository at this point in the history
  • Loading branch information
bpozdena committed Aug 23, 2022
1 parent 2421210 commit 31a2322
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/list_item_widget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<widget class="QLabel" name="ls_label_2">
<property name="maximumSize">
<size>
<width>150</width>
<width>170</width>
<height>16777215</height>
</size>
</property>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/process_status_page.ui
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ QPushButton:pressed {background-color: rgba(0, 0, 0, 0.1)}</string>
<string notr="true">color: rgb(255, 255, 255);</string>
</property>
<property name="text">
<string>Onedrive is sync not running</string>
<string>OneDrive sync is not running</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/ui_list_item_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def setupUi(self, list_item_widget):

self.ls_label_2 = QLabel(list_item_widget)
self.ls_label_2.setObjectName(u"ls_label_2")
self.ls_label_2.setMaximumSize(QSize(150, 16777215))
self.ls_label_2.setMaximumSize(QSize(170, 16777215))
self.ls_label_2.setAlignment(Qt.AlignRight|Qt.AlignTrailing|Qt.AlignVCenter)

self.gridLayout.addWidget(self.ls_label_2, 2, 2, 2, 1)
Expand Down

0 comments on commit 31a2322

Please sign in to comment.