Comment #1 on issue 184 by sunyin51: unable to middle mouse click to close
the inactive file
http://code.google.com/p/ulipad/issues/detail?id=184
# FlatNotebook itself works for middle moulse click to close the tab
# in a quick script test
import wx
from modules.wxctrl import FlatNotebook as FNB
w = wx.Frame(win)
stil = FNB.FNB_SMART_TABS|FNB.FNB_VC8|FNB.FNB_X_ON_TAB| \
FNB.FNB_NO_X_BUTTON|FNB.FNB_DROPDOWN_TABS_LIST|
FNB.FNB_MOUSE_MIDDLE_CLOSES_TABS
book = FNB.FlatNotebook(w, wx.ID_ANY, style=stil)
p=wx.Panel (w, -1)
book.AddPage(wx.Panel (w, -1), 'aaa',True, -1)
book.AddPage(wx.Panel (w, -1), 'bbb', True, -1)
book.AddPage(p, 'ccc', True, -1)
w.SetSize((700,600))
w.Show()
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings