Skip to content

Commit

Permalink
Merge from 5.x: PR #19894
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Oct 20, 2022
2 parents ac35223 + 9e584c1 commit f1c2426
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spyder/plugins/application/widgets/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ def __init__(self, parent):
self._progress_bar.setFixedWidth(180)
self.cancel_button = QPushButton()
self.cancel_button.setIcon(ima.icon('DialogCloseButton'))
self.cancel_button.setFixedHeight(50)
self.cancel_button.setFixedWidth(50)
self.cancel_button.setFixedHeight(25)
self.cancel_button.setFixedWidth(25)
progress_layout.addWidget(self._progress_bar, alignment=Qt.AlignLeft)
progress_layout.addWidget(self.cancel_button)
progress_layout.setAlignment(Qt.AlignVCenter)
self._progress_widget.setLayout(progress_layout)

self._progress_label = QLabel(_('Downloading'))
Expand Down

0 comments on commit f1c2426

Please sign in to comment.