mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[view] improvement: displaying the current image index as a label in the button bar (screenshots dialog)
This commit is contained in:
@@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
- UI
|
- UI
|
||||||
- upgrade summary dialog size
|
- upgrade summary dialog size
|
||||||
|
- screenshots: displaying the current image index as a label in the button bar (e.g: 1/3)
|
||||||
|
|
||||||
## [0.9.28] 2022-02-14
|
## [0.9.28] 2022-02-14
|
||||||
|
|
||||||
|
|||||||
@@ -67,6 +67,10 @@ class ScreenshotsDialog(QDialog):
|
|||||||
self.container_buttons.layout().addWidget(self.bt_back)
|
self.container_buttons.layout().addWidget(self.bt_back)
|
||||||
self.container_buttons.layout().addWidget(new_spacer())
|
self.container_buttons.layout().addWidget(new_spacer())
|
||||||
|
|
||||||
|
self.img_label = QLabel()
|
||||||
|
self.img_label.setObjectName("image_label")
|
||||||
|
self.container_buttons.layout().addWidget(self.img_label)
|
||||||
|
|
||||||
self.container_buttons.layout().addWidget(self.progress_bar)
|
self.container_buttons.layout().addWidget(self.progress_bar)
|
||||||
self.container_buttons.layout().addWidget(new_spacer())
|
self.container_buttons.layout().addWidget(new_spacer())
|
||||||
|
|
||||||
@@ -99,6 +103,7 @@ class ScreenshotsDialog(QDialog):
|
|||||||
img = self.loaded_imgs[self.img_idx]
|
img = self.loaded_imgs[self.img_idx]
|
||||||
|
|
||||||
if isinstance(img, QPixmap):
|
if isinstance(img, QPixmap):
|
||||||
|
self.img_label.setText(f'{self.img_idx + 1}/{len(self.screenshots)}')
|
||||||
self.img.setText('')
|
self.img.setText('')
|
||||||
self.img.setPixmap(img)
|
self.img.setPixmap(img)
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user