Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* [core]: detect KDE correctly
  • Loading branch information
beku committed Mar 23, 2019
1 parent 75bc0f5 commit 1d7d4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icc_examin.cpp
Expand Up @@ -419,7 +419,7 @@ ICCexamin::start (int argc, char** argv)
NULL};
int i = 0;
const char * xdg_desktop = getenv("XDG_CURRENT_DESKTOP");
if(xdg_desktop && strcmp(xdg_desktop,"KDE"))
if(xdg_desktop && strcmp(xdg_desktop,"KDE") == 0)
app = strdup("systemsettings5 settings-kolor-management");
if(oyranos_settings_gui_app)
app = strdup(oyranos_settings_gui_app);
Expand Down

0 comments on commit 1d7d4bc

Please sign in to comment.