"PTDN/git@developer.sourcefind.cn:wangsen/paddle_dbnet.git" did not exist on "23652f9ededb2e41cae03f3dbcff769e7fc54648"
Commit 48b15203 authored by HinGwenWoong's avatar HinGwenWoong
Browse files

Fixed BUG: the image-slider won't change value when process fit window

parent 9f69e975
...@@ -1466,6 +1466,7 @@ class MainWindow(QMainWindow): ...@@ -1466,6 +1466,7 @@ class MainWindow(QMainWindow):
def adjustScale(self, initial=False): def adjustScale(self, initial=False):
value = self.scalers[self.FIT_WINDOW if initial else self.zoomMode]() value = self.scalers[self.FIT_WINDOW if initial else self.zoomMode]()
self.zoomWidget.setValue(int(100 * value)) self.zoomWidget.setValue(int(100 * value))
self.imageSlider.setValue(self.zoomWidget.value()) # set zoom slider value
def scaleFitWindow(self): def scaleFitWindow(self):
"""Figure out the size of the pixmap in order to fit the main widget.""" """Figure out the size of the pixmap in order to fit the main widget."""
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment