diff options
author | John Stebbins <[email protected]> | 2016-10-31 09:32:22 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-10-31 09:33:22 -0700 |
commit | 0a913f088db821b964edfd5a711292cc6069cfa9 (patch) | |
tree | 5687a5f7e6134382ee927ef85f2a7a283a7aa091 /gtk/src/main.c | |
parent | 7fbb66885176a26dd13319e39a6bf083144eff12 (diff) |
LinGui: fix custom filter tooltips
Make them reflect the "key=value" format change we made to custom filter
settings.
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 399fce303..c8b087b58 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -1202,6 +1202,11 @@ main(int argc, char *argv[]) gtk_window_resize(GTK_WINDOW(ghb_window), window_width, window_height); + ghb_set_custom_filter_tooltip(ud, "PictureDetelecineCustom", + "detelecine", HB_FILTER_DETELECINE); + ghb_set_custom_filter_tooltip(ud, "PictureCombDetectCustom", + "interlace detection", HB_FILTER_DETELECINE); + gtk_widget_show(ghb_window); // Everything should be go-to-go. Lets rock! |