From 15d7c7bcc29e66f174c4de2420d371a9737ac6e4 Mon Sep 17 00:00:00 2001 From: adnano Date: Sat, 4 May 2024 21:44:59 -0400 Subject: Revert "Remove wmenu -P flag" This reverts commit c05ab7520b452ee3b8bd974a18511dc370cbeabe. --- render.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'render.c') diff --git a/render.c b/render.c index e33898d..3813af5 100644 --- a/render.c +++ b/render.c @@ -79,8 +79,22 @@ static void render_prompt(struct menu *menu, cairo_t *cairo) { // Renders the input text. static void render_input(struct menu *menu, cairo_t *cairo) { - render_text(menu, cairo, menu->input, menu->promptw, 0, 0, - 0, menu->normalfg, menu->padding, menu->padding); + char *censort = NULL; + + if (menu->passwd) { + censort = calloc(1, sizeof(menu->input)); + if (!censort) { + return; + } + memset(censort, '*', strlen(menu->input)); + } + + render_text(menu, cairo, menu->passwd ? censort : menu->input, + menu->promptw, 0, 0, 0, menu->normalfg, menu->padding, menu->padding); + + if (censort) { + free(censort); + } } // Renders a cursor for the input field. -- cgit v1.2.3