Fixed #193. drun mode now respects Hidden

This commit is contained in:
Scoopta 2023-07-04 22:51:29 -07:00
parent ec06bd8dcb
commit 81ea8042a7

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2022 Scoopta
* Copyright (C) 2019-2023 Scoopta
* This file is part of Wofi
* Wofi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -76,7 +76,8 @@ static char* get_search_text(char* file) {
static bool populate_widget(char* file, char* action, struct widget_builder* builder) {
GDesktopAppInfo* info = g_desktop_app_info_new_from_filename(file);
if(info == NULL || !g_app_info_should_show(G_APP_INFO(info))) {
if(info == NULL || !g_app_info_should_show(G_APP_INFO(info)) ||
g_desktop_app_info_get_is_hidden(info)) {
return false;
}
const char* name;