view flax/UI.py @ 2001:585848d3587c

vidref widget in timeline resizes with window size (kind of broken) Ignore-this: b382f4c2ed1170380ff68cf429424ba4
author drewp@bigasterisk.com
date Sun, 09 Jun 2019 22:02:36 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""