restored T-shortcut (focus toolbar) in scene widget

sceneinput
Marc Zinnschlag 9 years ago
parent 659b87b25f
commit 1aa926c7e0

@ -143,6 +143,10 @@ SceneWidget::SceneWidget(boost::shared_ptr<Resource::ResourceSystem> resourceSys
mView->setLightingMode(osgViewer::View::NO_LIGHT);
setLighting(&mLightingDay);
/// \todo make shortcut configurable
QShortcut *focusToolbar = new QShortcut (Qt::Key_T, this, 0, 0, Qt::WidgetWithChildrenShortcut);
connect (focusToolbar, SIGNAL (activated()), this, SIGNAL (focusToolbarRequest()));
}
SceneWidget::~SceneWidget()

@ -88,6 +88,10 @@ namespace CSVRender
private slots:
void selectLightingMode (const std::string& mode);
signals:
void focusToolbarRequest();
};

Loading…
Cancel
Save