diff options
author | Marvin Borner | 2020-11-29 22:17:41 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-29 22:17:41 +0100 |
commit | a80021fa96b07d4ae26d9f85099f4bce09a8f5b3 (patch) | |
tree | b3a95aeb91d783de999e22cc825395957c511f23 /apps/exec.c | |
parent | cb9816c78f25ecc8736cd97c11c839a4c18bcf76 (diff) |
Big steps towards working window resizing
Found some other bugs too
Diffstat (limited to 'apps/exec.c')
-rw-r--r-- | apps/exec.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/apps/exec.c b/apps/exec.c index 51aef91..726544d 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -14,7 +14,8 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) { (void)event; - char *inp = ((struct element_text_input *)elem->data)->text; + struct element_text_input *inp_elem = (struct element_text_input *)elem->data; + char *inp = inp_elem->text; // TODO: Support more than one arg char *inp_copy = strdup(inp); @@ -31,7 +32,14 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) char *final = malloc(l); strcat(final, PATH); strcat(final, inp); - exec(final, inp, arg, NULL); + + if (stat(final)) { + inp_elem->color_bg = COLOR_WHITE; + exec(final, inp, arg, NULL); + } else { + inp_elem->color_bg = COLOR_BRIGHT_RED; + } + gui_sync(elem); } int main() |