Change scene controls to more closely match blender as requested

in the forums.
coverity_scan^2
Aesylwinn 9 years ago
parent 1cce085fa2
commit bc7ae70f0b

@ -309,15 +309,15 @@ void CSMPrefs::State::declare()
declareShortcut ("orbit-center-selection", "Center On Selected", QKeySequence(Qt::Key_C));
declareSubcategory ("Scene");
declareShortcut ("scene-navi-primary", "Camera Rotation From Mouse Movement", QKeySequence(Qt::LeftButton));
declareShortcut ("scene-navi-primary", "Camera Rotation From Mouse Movement", QKeySequence(Qt::MiddleButton));
declareShortcut ("scene-navi-secondary", "Camera Translation From Mouse Movement",
QKeySequence(Qt::ControlModifier | (int)Qt::LeftButton));
declareShortcut ("scene-edit-primary", "Primary Edit", QKeySequence(Qt::RightButton));
QKeySequence(Qt::ShiftModifier | (int)Qt::MiddleButton));
declareShortcut ("scene-edit-primary", "Primary Edit", QKeySequence(Qt::LeftButton));
declareShortcut ("scene-edit-secondary", "Secondary Edit",
QKeySequence(Qt::ControlModifier | (int)Qt::RightButton));
declareShortcut ("scene-select-primary", "Primary Select", QKeySequence(Qt::MiddleButton));
QKeySequence(Qt::ShiftModifier | (int)Qt::LeftButton));
declareShortcut ("scene-select-primary", "Primary Select", QKeySequence(Qt::RightButton));
declareShortcut ("scene-select-secondary", "Secondary Select",
QKeySequence(Qt::ControlModifier | (int)Qt::MiddleButton));
QKeySequence(Qt::ShiftModifier | (int)Qt::RightButton));
declareShortcut ("scene-load-cam-cell", "Load Camera Cell", QKeySequence(Qt::KeypadModifier | Qt::Key_5));
declareShortcut ("scene-load-cam-eastcell", "Load East Cell", QKeySequence(Qt::KeypadModifier | Qt::Key_6));
declareShortcut ("scene-load-cam-northcell", "Load North Cell", QKeySequence(Qt::KeypadModifier | Qt::Key_8));

Loading…
Cancel
Save