Jam/status_bar.py

9 lines
206 B
Python
Raw Normal View History

from kivy.uix.label import Label
from kivy.graphics import Color,Rectangle
class Status_bar(Label):
def __init__(self,**kwargs):
# init Label
super(Status_bar,self).__init__(**kwargs)