comparison src/layout.c @ 1632:1f3bf4a631df

added mark filter to menu - now it is possible to assign hotkeys
author nadvornik
date Sat, 06 Jun 2009 22:51:55 +0000
parents 94e4a47ccaff
children
comparison
equal deleted inserted replaced
1631:368b31e37674 1632:1f3bf4a631df
1077 if (lw->vf) vf_selection_to_mark(lw->vf, mark, mode); 1077 if (lw->vf) vf_selection_to_mark(lw->vf, mark, mode);
1078 1078
1079 layout_status_update_info(lw, NULL); /* osd in fullscreen mode */ 1079 layout_status_update_info(lw, NULL); /* osd in fullscreen mode */
1080 } 1080 }
1081 1081
1082 void layout_mark_filter_toggle(LayoutWindow *lw, gint mark)
1083 {
1084 if (!layout_valid(&lw)) return;
1085
1086 if (lw->vf) vf_mark_filter_toggle(lw->vf, mark);
1087 }
1088
1089
1082 /* 1090 /*
1083 *----------------------------------------------------------------------------- 1091 *-----------------------------------------------------------------------------
1084 * access 1092 * access
1085 *----------------------------------------------------------------------------- 1093 *-----------------------------------------------------------------------------
1086 */ 1094 */