private static void SetRecentSize(object userdata)
 {
     FsmEditorSettings.ActionBrowserRecentSize = (int)userdata;
     FsmEditorSettings.SaveSettings();
     ActionSelector.EnforceRecentCategorySize();
 }
 public static void AddActionToRecent(Type actionType)
 {
     Actions.InsertActionAtTopOfCategory("Recent", actionType);
     ActionSelector.EnforceRecentCategorySize();
     ActionSelector.RefreshFilteredList();
 }