Skip to content
Snippets Groups Projects
Commit 1324972e authored by Owen Arnold's avatar Owen Arnold
Browse files

Merge remote-tracking branch 'origin/bugfix/10809_fix_multislice_freeze_with_mdevent_data'

parents 4de8be77 1752c1c4
No related branches found
No related tags found
No related merge requests found
...@@ -6,14 +6,20 @@ ...@@ -6,14 +6,20 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>974</width> <width>1057</width>
<height>710</height> <height>710</height>
</rect> </rect>
</property> </property>
<property name="minimumSize">
<size>
<width>1057</width>
<height>0</height>
</size>
</property>
<property name="windowTitle"> <property name="windowTitle">
<string>Form</string> <string>Form</string>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,1,0"> <layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,0,0">
<property name="spacing"> <property name="spacing">
<number>0</number> <number>0</number>
</property> </property>
...@@ -172,7 +178,7 @@ ...@@ -172,7 +178,7 @@
<widget class="pqPipelineBrowserWidget" name="pipelineBrowser" native="true"> <widget class="pqPipelineBrowserWidget" name="pipelineBrowser" native="true">
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>150</width> <width>350</width>
<height>50</height> <height>50</height>
</size> </size>
</property> </property>
...@@ -206,8 +212,8 @@ ...@@ -206,8 +212,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>98</width> <width>274</width>
<height>28</height> <height>370</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout">
...@@ -225,7 +231,7 @@ ...@@ -225,7 +231,7 @@
<widget class="QWidget" name="viewWidget" native="true"> <widget class="QWidget" name="viewWidget" native="true">
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>800</width> <width>600</width>
<height>600</height> <height>600</height>
</size> </size>
</property> </property>
......
...@@ -327,6 +327,9 @@ void MdViewerWidget::removeProxyTabWidgetConnections() ...@@ -327,6 +327,9 @@ void MdViewerWidget::removeProxyTabWidgetConnections()
{ {
QObject::disconnect(&pqActiveObjects::instance(), 0, QObject::disconnect(&pqActiveObjects::instance(), 0,
this->ui.propertiesPanel, 0); this->ui.propertiesPanel, 0);
this->ui.propertiesPanel->setRepresentation(NULL);
this->ui.propertiesPanel->setView(NULL);
this->ui.propertiesPanel->setOutputPort(NULL);
} }
/** /**
...@@ -387,6 +390,10 @@ void MdViewerWidget::setParaViewComponentsForView() ...@@ -387,6 +390,10 @@ void MdViewerWidget::setParaViewComponentsForView()
QObject::connect(activeObjects, SIGNAL(viewChanged(pqView*)), QObject::connect(activeObjects, SIGNAL(viewChanged(pqView*)),
this->ui.propertiesPanel, SLOT(setView(pqView*))); this->ui.propertiesPanel, SLOT(setView(pqView*)));
this->ui.propertiesPanel->setOutputPort(activeObjects->activePort());
this->ui.propertiesPanel->setView(this->currentView->getView());
this->ui.propertiesPanel->setRepresentation(activeObjects->activeRepresentation());
QObject::connect(this->currentView, QObject::connect(this->currentView,
SIGNAL(triggerAccept()), SIGNAL(triggerAccept()),
this->ui.propertiesPanel, this->ui.propertiesPanel,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment