mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 10:00:23 +08:00
Export: supporting texturing with multi-camera
This commit is contained in:
@@ -3940,6 +3940,15 @@ void MainWindow::resizeEvent(QResizeEvent* anEvent)
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::keyPressEvent(QKeyEvent *event)
|
||||
{
|
||||
//catch ctrl-s to save settings
|
||||
if((event->modifiers() & Qt::ControlModifier) && event->key() == Qt::Key_S)
|
||||
{
|
||||
this->saveConfigGUI();
|
||||
}
|
||||
}
|
||||
|
||||
bool MainWindow::eventFilter(QObject *obj, QEvent *event)
|
||||
{
|
||||
if (event->type() == QEvent::Resize && qobject_cast<QDockWidget*>(obj))
|
||||
|
||||
Reference in New Issue
Block a user