projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Put dialog in more sensible place in Forty, got a bit further
[wxWidgets.git]
/
wxPython
/
demo
/
wxListCtrl.py
diff --git
a/wxPython/demo/wxListCtrl.py
b/wxPython/demo/wxListCtrl.py
index 41645a29c3a5a7b328d87255fb978e6c550a3bdb..b861392e54e0523d7948d5e98f543fbc00d7ae98 100644
(file)
--- a/
wxPython/demo/wxListCtrl.py
+++ b/
wxPython/demo/wxListCtrl.py
@@
-223,6
+223,10
@@
class TestListCtrlPanel(wxPanel, wxColumnSorterMixin):
def OnColBeginDrag(self, event):
self.log.WriteText("OnColBeginDrag\n")
+ ## Show how to not allow a column to be resized
+ #if event.GetColumn() == 0:
+ # event.Veto()
+
def OnColDragging(self, event):
self.log.WriteText("OnColDragging\n")