def _select_top_object(): objects = ifaint.get_objects() if len(objects) > 0: ifaint.tool(0) ifaint.set_layer(1) i = ifaint.get_active_image() i.select(objects[-1])
def _toggle_selection_type(): """Toggles between raster and object selection""" if ifaint.tool() == 0: ifaint.set_layer(1 - ifaint.get_layer()) else: ifaint.tool_selection()
def _toggle_selection_type(): """Toggles between raster and object selection""" ifaint.tool(_other_selection())
def _other_selection(): if ifaint.tool() == 0: return 1 return 0