Changeset 4445
- Timestamp:
- 04/05/09 14:58:55 (4 years ago)
- Files:
-
- 1 modified
-
trunk/umit/gui/ScanMapperPage.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/umit/gui/ScanMapperPage.py
r4441 r4445 26 26 from umit.gui.radialnet.Toolbar import Toolbar 27 27 28 from higwidgets.higboxes import HIGVBox, HIGHBox 28 from higwidgets.higboxes import HIGVBox, HIGHBox, HIGScrolledWindow 29 29 30 30 from umit.core.I18N import _ … … 61 61 62 62 self.__control = ControlWidget(self.__radialnet) 63 self.__control_sw = HIGScrolledWindow() 64 self.__control_sw.add_with_viewport(self.__control) 65 self.__control_sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC) 66 63 67 self.__fisheye = ControlFisheye(self.__radialnet) 64 68 self.__toolbar = Toolbar(self.__radialnet, 65 69 self, 66 self.__control ,70 self.__control_sw, 67 71 self.__fisheye) 68 72 self.__toolbar.disable_tools() … … 71 75 72 76 self.__hbox._pack_expand_fill(self.__radialnet) 73 self.__hbox._pack_noexpand_nofill(self.__control )77 self.__hbox._pack_noexpand_nofill(self.__control_sw) 74 78 75 79 self._pack_noexpand_nofill(self.__toolbar)
