forked from teamnwah/openmw-tes3coop
restored T-shortcut (focus toolbar) in scene widget
This commit is contained in:
parent
659b87b25f
commit
1aa926c7e0
2 changed files with 8 additions and 0 deletions
|
@ -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…
Reference in a new issue