[wlr/taskbar] Check StartupWMClass on list returned by g_desktop_app_info_searchi()
This commit is contained in:
parent
e293b89f6b
commit
fffb52dd93
|
@ -137,8 +137,13 @@ static std::string get_from_desktop_app_info_search(const std::string &app_id)
|
||||||
for (size_t i=0; desktop_list[0][i]; i++) {
|
for (size_t i=0; desktop_list[0][i]; i++) {
|
||||||
if(desktop_file == "") {
|
if(desktop_file == "") {
|
||||||
desktop_file = desktop_list[0][i];
|
desktop_file = desktop_list[0][i];
|
||||||
|
} else {
|
||||||
|
auto tmp_info = Gio::DesktopAppInfo::create(desktop_list[0][i]);
|
||||||
|
auto startup_class = tmp_info->get_startup_wm_class();
|
||||||
|
|
||||||
|
if (startup_class == app_id)
|
||||||
|
desktop_file = desktop_list[0][i];
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
g_strfreev(desktop_list[0]);
|
g_strfreev(desktop_list[0]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue