Changeset 965:63e290b4ba1e for src/mlx
- Timestamp:
- 05/16/19 16:57:46 (6 years ago)
- Branch:
- python3
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/delaycodes.py
r919 r965 35 35 so high to fit into the VBox.""" 36 36 if self._vboxHeight is not None: 37 allocation.y += 1 37 38 allocation.height = self._vboxHeight - allocation.y 38 39 self._vboxHeight = None … … 126 127 gtk.Alignment.do_size_allocate(self, allocation) 127 128 129 class TreeView(gtk.TreeView): 130 def do_size_allocate(self, allocation): 131 allocation.height += 1 132 gtk.TreeView.do_size_allocate(self, allocation) 133 128 134 #------------------------------------------------------------------------------ 129 135 … … 241 247 self._delayCodeData = None 242 248 243 self._treeView = gtk.TreeView(gtk.ListStore(str, str))249 self._treeView = TreeView(gtk.ListStore(str, str)) 244 250 self._treeView.set_rules_hint(True) 245 251
Note:
See TracChangeset
for help on using the changeset viewer.