summaryrefslogtreecommitdiffstats
path: root/include/settings.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-24 21:46:39 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-24 21:47:36 +0200
commit440756af947322d956d10311956f38dfd721c047 (patch)
treef9f1b1864d7a9b766498526c9b5b71707ce1da76 /include/settings.h
parentb19ab62e1796a0570e6943e04aed904970f9e6e8 (diff)
Option to disable/enable the highlighting of match.
Diffstat (limited to 'include/settings.h')
-rw-r--r--include/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/settings.h b/include/settings.h
index 83357bfa..078a356a 100644
--- a/include/settings.h
+++ b/include/settings.h
@@ -1,6 +1,8 @@
#ifndef ROFI_SETTINGS_H
#define ROFI_SETTINGS_H
+#include <glib.h>
+
/**
* Enumeration indicating the matching method to use.
*
@@ -148,6 +150,7 @@ typedef struct
char *window_format;
/** Click outside the window to exit */
int click_to_exit;
+ gboolean show_match;
} Settings;
/** Global Settings structure. */
extern Settings config;