summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2022-01-25 20:29:06 +0100
committerDave Davenport <qball@blame.services>2022-01-25 20:29:06 +0100
commit2817debc041db5a17c92039815189f6da5f4311a (patch)
treeb4bf18ea88a235cc75a3655f072c156a94aa1e3e
parentbdea8b97878caceca149e589cd7e8adcbe4f9d5a (diff)
[XrmOptions] Small fix in parsing cmdline option.
-rw-r--r--source/xrmoptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/xrmoptions.c b/source/xrmoptions.c
index 80924135..d9e39ea7 100644
--- a/source/xrmoptions.c
+++ b/source/xrmoptions.c
@@ -555,7 +555,7 @@ void config_parse_cmd_options(void) {
for (int j = 1; tokens && tokens[j]; j++) {
count++;
}
- if (count == 2) {
+ if (count >= 2) {
if (g_str_has_prefix(tokens[1], "theme")) {
g_strfreev(tokens);
tokens = g_strsplit(stored_argv[in], "+", 0);