diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2021-01-21 19:41:19 +0000 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2021-01-21 19:41:19 +0000 |
commit | c40e80dd480f492590fdef5955bcf79f80cc1e53 (patch) | |
tree | b3967d4ff0025d3a4b73e6c9dfa336fc223cbffa /src/bin/elementary/config.c | |
parent | 728d4dba16bd079ded043bc4b61f464bc7ad48b0 (diff) |
elm - fix elm_config args parsing/collecting
@fix
Diffstat (limited to '')
-rw-r--r-- | src/bin/elementary/config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/elementary/config.c b/src/bin/elementary/config.c index ff05307700..70c9a519f1 100644 --- a/src/bin/elementary/config.c +++ b/src/bin/elementary/config.c | |||
@@ -4414,25 +4414,25 @@ efl_main(void *data EINA_UNUSED, const Efl_Event *ev) | |||
4414 | else if ((!strcmp(arg, "-t")) && (i < eina_array_count(arge->argv))) | 4414 | else if ((!strcmp(arg, "-t")) && (i < eina_array_count(arge->argv))) |
4415 | { | 4415 | { |
4416 | i++; | 4416 | i++; |
4417 | theme_set = arg; | 4417 | theme_set = eina_array_data_get(arge->argv, i); |
4418 | interactive = 0; | 4418 | interactive = 0; |
4419 | } | 4419 | } |
4420 | else if ((!strcmp(arg, "-f")) && (i < eina_array_count(arge->argv))) | 4420 | else if ((!strcmp(arg, "-f")) && (i < eina_array_count(arge->argv))) |
4421 | { | 4421 | { |
4422 | i++; | 4422 | i++; |
4423 | finger_size_set = arg; | 4423 | finger_size_set = eina_array_data_get(arge->argv, i); |
4424 | interactive = 0; | 4424 | interactive = 0; |
4425 | } | 4425 | } |
4426 | else if ((!strcmp(arg, "-s")) && (i < eina_array_count(arge->argv))) | 4426 | else if ((!strcmp(arg, "-s")) && (i < eina_array_count(arge->argv))) |
4427 | { | 4427 | { |
4428 | i++; | 4428 | i++; |
4429 | scale_set = arg; | 4429 | scale_set = eina_array_data_get(arge->argv, i); |
4430 | interactive = 0; | 4430 | interactive = 0; |
4431 | } | 4431 | } |
4432 | else if ((!strcmp(arg, "-w")) && (i < eina_array_count(arge->argv))) | 4432 | else if ((!strcmp(arg, "-w")) && (i < eina_array_count(arge->argv))) |
4433 | { | 4433 | { |
4434 | i++; | 4434 | i++; |
4435 | web_backend = arg; | 4435 | web_backend = eina_array_data_get(arge->argv, i); |
4436 | interactive = 0; | 4436 | interactive = 0; |
4437 | } | 4437 | } |
4438 | } | 4438 | } |