AGW Logo

svn SVN Revision 68342 For toasterbox

This file contains the SVN revision history for toasterbox, at revision 68342.

Available information include commit date, the name of the committer, the file size, the SVN log messages and a diff from the previous version (if available).


file_info File Information

  • Commit Date: 13-Jan-2009 17:09:05 UTC
  • Committer: AG
  • File Size: 43528 byte(s)

svn_log Log Messages

The following log message was entered by the committer:

  • ToasterBox: fixed ticket #13258. It appears wx.FRAME_TOOL_WINDOW doesn’t work as expected on Windows 7
  • AuiNotebook: fixed tickets #12800 and #12919

svn_diff Diff To Previous Version (66289)

Version SVN diff:

--- wxPython/3rdParty/AGW/agw/toasterbox.py 2010/11/28 15:31:03     66289
+++ wxPython/3rdParty/AGW/agw/toasterbox.py 2011/07/23 19:06:24     68342
@@ -108,7 +108,7 @@
""" to it a dummy frame and a wx.Panel. See the demo for details. """
TB_DEFAULT_STYLE = wx.SIMPLE_BORDER | wx.STAY_ON_TOP | wx.FRAME_NO_TASKBAR
""" Default window style for `ToasterBox`, with no caption nor close box. """
-TB_CAPTION = TB_DEFAULT_STYLE | wx.CAPTION | wx.SYSTEM_MENU | wx.CLOSE_BOX | wx.FRAME_TOOL_WINDOW
+TB_CAPTION = TB_DEFAULT_STYLE | wx.CAPTION | wx.SYSTEM_MENU | wx.CLOSE_BOX | wx.FRAME_NO_TASKBAR
""" `ToasterBox` will have a caption, with the possibility to set a title """ \
""" for the `ToasterBox` frame, and a close box. """
TB_ONTIME = 1
@@ -957,8 +957,9 @@
def NotifyTimer(self, event):
""" Hides gradually the L{ToasterBoxWindow}. """

-        self.showtime.Stop()
-        del self.showtime
+        if self._scrollType != TB_SCR_TYPE_FADE:
+            self.showtime.Stop()
+            del self.showtime

self._direction = wx.DOWN
self.SetupPositions()
Tree

Table Of Contents

Previous topic

ToasterBoxWindow

Next topic

SVN Revision 68881 For toasterbox