Changeset 3158
- Timestamp:
- 07/16/08 23:44:41 (5 years ago)
- Location:
- branch/PacketManipulator/widgets
- Files:
-
- 1 added
- 1 modified
-
PropertyGrid.py (modified) (1 diff)
-
protocols.py (added)
Legend:
- Unmodified
- Added
- Removed
-
branch/PacketManipulator/widgets/PropertyGrid.py
r3157 r3158 117 117 size = bounds.width 118 118 119 # Paint a center check button120 widget.style.paint_check(window, state, sh, bounds, widget, \121 "checkbutton", \122 bounds.x \123 bounds.y + (bounds.height - size) / 2, \124 size, size)125 119 # Paint a right aligned checkbox 120 widget.style.paint_check(window, state, sh, bounds, widget, 121 "checkbutton", bounds.x, 122 bounds.y + (bounds.height - size) / 2, 123 size, size) 124 125 # Yes we handle the drawing 126 126 return True 127 127
