aboutsummaryrefslogtreecommitdiff
path: root/render.c
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-05-04 21:41:21 -0400
committeradnano <me@adnano.co>2024-05-04 21:41:21 -0400
commitc05ab7520b452ee3b8bd974a18511dc370cbeabe (patch)
tree6983a51d1fdc7f45cf9b97c7957b81ac8b0fc836 /render.c
parent81d46e39120bcb7c24cec2105e05f3524e8bd548 (diff)
downloadwmenu-c05ab7520b452ee3b8bd974a18511dc370cbeabe.tar.gz
Remove wmenu -P flag
This flag causes some issues with wmenu-run. It will be revisited in the next release.
Diffstat (limited to 'render.c')
-rw-r--r--render.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/render.c b/render.c
index 3813af5..e33898d 100644
--- a/render.c
+++ b/render.c
@@ -79,22 +79,8 @@ static void render_prompt(struct menu *menu, cairo_t *cairo) {
// Renders the input text.
static void render_input(struct menu *menu, cairo_t *cairo) {
- 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);
- }
+ render_text(menu, cairo, menu->input, menu->promptw, 0, 0,
+ 0, menu->normalfg, menu->padding, menu->padding);
}
// Renders a cursor for the input field.