Calculator icon

This commit is contained in:
Kevin Lange 2017-01-08 15:48:11 +09:00
parent 0712f0f41d
commit 369c6eb09a
3 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -127,7 +127,7 @@ class CalculatorWindow(yutani.Window):
base_height = 200 base_height = 200
def __init__(self, decorator): def __init__(self, decorator):
super(CalculatorWindow, self).__init__(self.base_width + decorator.width(), self.base_height + decorator.height(), title="Calculator", doublebuffer=True) super(CalculatorWindow, self).__init__(self.base_width + decorator.width(), self.base_height + decorator.height(), title="Calculator", icon="calculator", doublebuffer=True)
self.move(100,100) self.move(100,100)
self.decorator = decorator self.decorator = decorator