aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/main.c24
2 files changed, 29 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 98fbc5f6..5e699a75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-25
+
+ * src/main.c: win32: check for the TaskbarCreated message and reshow
+ icon when explorer.exe crashes.
+
2013-10-30
* src/vcard.c
diff --git a/src/main.c b/src/main.c
index 1d2c9c42..d98c25ca 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1144,6 +1144,11 @@ static void set_log_handlers(gboolean enable)
}
#ifdef G_OS_WIN32
+
+#if !GTK_CHECK_VERSION(2, 14, 0)
+static UINT taskbar_created_msg;
+#endif
+
static BOOL WINAPI
ctrl_handler(DWORD dwctrltype)
{
@@ -1176,6 +1181,21 @@ wndproc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
}
break;
default:
+#if !GTK_CHECK_VERSION(2, 14, 0)
+ if (message == taskbar_created_msg) {
+ debug_print("TaskbarCreated received\n");
+
+ /* recreate tray icon */
+ {
+ MainWindow *mainwin = main_window_get();
+ if (mainwin && mainwin->tray_icon &&
+ gtk_status_icon_get_visible(mainwin->tray_icon->status_icon)) {
+ trayicon_hide(mainwin->tray_icon);
+ trayicon_show(mainwin->tray_icon);
+ }
+ }
+ }
+#endif
break;
}
@@ -1200,6 +1220,10 @@ static void register_system_events(void)
if (hwnd)
return;
+#if !GTK_CHECK_VERSION(2, 14, 0)
+ taskbar_created_msg = RegisterWindowMessage("TaskbarCreated");
+#endif
+
debug_print("register_system_events(): RegisterClass\n");
memset(&wclass, 0, sizeof(WNDCLASS));