From 4a4f5e4248daeb6ad93f1101526bf53c1c24c8f6 Mon Sep 17 00:00:00 2001 From: brenda-br Date: Sun, 29 Jan 2023 11:45:16 +0530 Subject: Fix #32 Simulation window not shifting after submitting dock widget(More Fixes) --- DockWidgets/DockWidgetCompoundSeparator.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'DockWidgets/DockWidgetCompoundSeparator.py') diff --git a/DockWidgets/DockWidgetCompoundSeparator.py b/DockWidgets/DockWidgetCompoundSeparator.py index 710ba5e..57b1339 100644 --- a/DockWidgets/DockWidgetCompoundSeparator.py +++ b/DockWidgets/DockWidgetCompoundSeparator.py @@ -113,6 +113,9 @@ class DockWidgetCompoundSeparator(QDockWidget,ui_dialog): self.obj.param_setter(self.dict) + if(self.isVisible()): + currentVal = self.parent().container.graphics.graphicsView.horizontalScrollBar().value() + self.parent().container.graphics.graphicsView.horizontalScrollBar().setValue(currentVal-189) self.hide() except Exception as e: -- cgit