diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-10 20:59:20 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-10 20:59:20 +0100 |
commit | 0ae928ac85ed38fa60f19da615d3c1ce7849397b (patch) | |
tree | 806f94058cd80c0d9cf80ce00bc10639dd3a0ad6 /cmdline.cpp | |
parent | f120e3e367f01f006bd5ddfd9f1ac018273e75e3 (diff) | |
download | sciteco-0ae928ac85ed38fa60f19da615d3c1ce7849397b.tar.gz |
support filename highlighting in GtkInfoPopup
Diffstat (limited to 'cmdline.cpp')
-rw-r--r-- | cmdline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmdline.cpp b/cmdline.cpp index 9f3a438..ea8894e 100644 --- a/cmdline.cpp +++ b/cmdline.cpp @@ -234,7 +234,8 @@ filename_complete(const gchar *filename, gchar completed) ? GTK_INFO_POPUP_DIRECTORY : GTK_INFO_POPUP_FILE; gtk_info_popup_add_filename(filename_popup, - type, (gchar *)file->data); + type, (gchar *)file->data, + FALSE); } gtk_widget_show(GTK_WIDGET(filename_popup)); |