Skip to content

Commit

Permalink
fix wesnoth icon not appearing with dbus notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jul 14, 2014
1 parent feb34af commit ab74410
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/desktop/dbus_notification.cpp
Expand Up @@ -144,7 +144,10 @@ uint32_t send_dbus_notification(DBusConnection *connection, uint32_t replaces_id
DBUS_TYPE_STRING, &event_id,
DBUS_TYPE_INVALID);
}
std::string app_icon_ = game_config::path + "/images/wesnoth-icon-small.png";

std::string app_icon_ = game_config::path + "images/game-icon.png";
LOG_DU << "app_icon_=\'" << app_icon_ << "\'\n";

const char *app_icon = app_icon_.c_str();
const char *summary = owner.c_str();
const char *body = message.c_str();
Expand Down

0 comments on commit ab74410

Please sign in to comment.