minor optimization when search for actions

This commit is contained in:
Paul Davis 2016-06-07 19:25:11 -04:00
parent a5ae129a06
commit 83770f839b
1 changed files with 2 additions and 1 deletions

View File

@ -187,6 +187,8 @@ ActionManager::get_action (const char* group_name, const char* action_name)
act = Glib::wrap (_act, true);
break;
}
break;
}
}
@ -282,4 +284,3 @@ ActionManager::set_toggle_action (const char* group, const char*action, bool yn)
}
}
}