From 4a9067b9216dee7d50c7bde439aed76943317e48 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 22 Dec 2003 21:25:58 +0000 Subject: [PATCH] wxTaskBarIcon works on wxGTK now too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/Main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 438245d456..bd75b35f5b 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -439,8 +439,10 @@ class wxPythonDemo(wx.Frame): icon = images.getMondrianIcon() self.SetIcon(icon) - if wx.Platform == '__WXMSW__': + if wx.Platform != '__WXMAC__': # setup a taskbar icon, and catch some events from it + icon = wx.IconFromBitmap( + images.getMondrianImage().Scale(16,16).ConvertToBitmap() ) self.tbicon = wx.TaskBarIcon() self.tbicon.SetIcon(icon, "wxPython Demo") self.tbicon.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.OnTaskBarActivate) -- 2.50.0