Skip to content
Snippets Groups Projects
Commit bb29de48 authored by Adrian Knobloch's avatar Adrian Knobloch
Browse files

Fix locking of ViewerWidget

parent cffb831b
No related branches found
No related tags found
No related merge requests found
...@@ -215,7 +215,7 @@ void Viewer3DWidget::postDocking() ...@@ -215,7 +215,7 @@ void Viewer3DWidget::postDocking()
viewer->show(); viewer->show();
cb3DViewers = new QComboBox(getWidget()); cb3DViewers = new QComboBox(getWidget());
QLabel* label = new QLabel("Scene:"); label = new QLabel("Scene:");
sceneConfigDialogButton = new QPushButton(QIcon(":/icons/configure-3.png"), "", getWidget()); sceneConfigDialogButton = new QPushButton(QIcon(":/icons/configure-3.png"), "", getWidget());
sceneConfigDialogButton->setToolTip("Configure Scene"); sceneConfigDialogButton->setToolTip("Configure Scene");
grid->addWidget(view1, 0, 0, 1, 3); grid->addWidget(view1, 0, 0, 1, 3);
......
...@@ -33,6 +33,7 @@ class SoSeparator; ...@@ -33,6 +33,7 @@ class SoSeparator;
class QComboBox; class QComboBox;
class QPushButton; class QPushButton;
class QLabel;
class Ui_Viewer3DWidget; class Ui_Viewer3DWidget;
class Ui_ViewerWidgetConfigDialog; class Ui_ViewerWidgetConfigDialog;
...@@ -85,7 +86,7 @@ namespace armarx ...@@ -85,7 +86,7 @@ namespace armarx
SoSeparator* emptyNode; SoSeparator* emptyNode;
QPointer<QComboBox> cb3DViewers; QPointer<QComboBox> cb3DViewers;
QPointer<QPushButton> sceneConfigDialogButton; QPointer<QPushButton> sceneConfigDialogButton;
QPointer<QWidget> label; QPointer<QLabel> label;
void setNode(int index); void setNode(int index);
public slots: public slots:
......
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