Fix crash looking up smart-mode
we need to call get_toggle_action (char const*, char const, bool d = false) and not get_toggle_action (const string& name, bool) For whatever reason `(string, char*)` matches the latter function's signature.
This commit is contained in:
parent
bbdb6b0e63
commit
c8b2c0c543
@ -284,13 +284,13 @@ EditorSections::selection_changed ()
|
||||
/* OK */
|
||||
break;
|
||||
case Editing::MouseObject:
|
||||
if (ActionManager::get_toggle_action ("MouseMode", "set-mouse-mode-object-range")->get_active ()) {
|
||||
if (ActionManager::get_toggle_action (PublicEditor::instance().editor_name().c_str(), "set-mouse-mode-object-range")->get_active ()) {
|
||||
/* smart mode; OK */
|
||||
break;
|
||||
}
|
||||
/*fallthrough*/
|
||||
default:
|
||||
Glib::RefPtr<RadioAction> ract = ActionManager::get_radio_action (X_("MouseMode"), X_("set-mouse-mode-range"));
|
||||
Glib::RefPtr<RadioAction> ract = ActionManager::get_radio_action (PublicEditor::instance().editor_name().c_str(), X_("set-mouse-mode-range"));
|
||||
ract->set_active (true);
|
||||
break;
|
||||
}
|
||||
|
@ -313,11 +313,7 @@ TimeInfoBox::selection_changed ()
|
||||
|
||||
case Editing::MouseRange:
|
||||
if (selection.time.empty()) {
|
||||
/* XXX we really ought to be calling
|
||||
::get_mouse_mode_action() here but there is no actual
|
||||
mouse emode enum for smart mode (object-range).
|
||||
*/
|
||||
Glib::RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (PublicEditor::instance().editor_name(), "set-mouse-mode-object-range");
|
||||
Glib::RefPtr<ToggleAction> tact = ActionManager::get_toggle_action (PublicEditor::instance().editor_name().c_str(), "set-mouse-mode-object-range");
|
||||
|
||||
if (tact->get_active() && !selection.regions.empty()) {
|
||||
/* show selected regions */
|
||||
|
Loading…
Reference in New Issue
Block a user