MCPcopy Index your code
hub / github.com/rawpython/remi / __init__

Method __init__

editor/editor.py:225–234  ·  view source on GitHub ↗
(self, app_instance, **kwargs)

Source from the content-addressed store, hash-verified

223class ResizeHelper(gui.Widget, DraggableItem):
224
225 def __init__(self, app_instance, **kwargs):
226 super(ResizeHelper, self).__init__(**kwargs)
227 DraggableItem.__init__(self, app_instance, **kwargs)
228 self.style['float'] = 'none'
229 self.style['background-image'] = "url('/editor_resources:resize.png')"
230 self.style['background-color'] = "rgba(255,255,255,0.0)"
231 self.style['position'] = 'absolute'
232 self.style['left'] = '0px'
233 self.style['top'] = '0px'
234 self.onmousedown.do(self.start_drag)
235
236 def setup(self, refWidget, newParent):
237 self.style['display'] = 'none'

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
doMethod · 0.45

Tested by

no test coverage detected