Skip to content

Commit da54e77

Browse files
author
Davide Rosa
committed
Rearranged resources location.
1 parent c7cc412 commit da54e77

7 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gui
88
===
99
Platform indipendent python gui library. In less than 100 Kbytes of source code, perfect for your diet.
1010

11-
![Alt text](https://raw.githubusercontent.com/dddomodossola/gui/master/screenshot.png "Widgets overview")
11+
![Alt text](https://raw.githubusercontent.com/dddomodossola/gui/master/res/screenshot.png "Widgets overview")
1212

1313
It allows to create platform indipendent GUI with python. The entire gui will be shown in the browser because it is represented in HTML. You have to write NO HTML code, because the library itself converts the python code automatically in HTML. When your app starts, it starts a webserver that will be accessible on your network.
1414

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
font-family: 'Hind';
55
font-style: normal;
66
font-weight: 400;
7-
src: local('Hind Regular'), local('Hind-Regular'), url( ./font.woff2) format('woff2');
7+
src: local('Hind Regular'), local('Hind-Regular'), url( res/font.woff2) format('woff2');
88
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
99
}
1010

1111
body {
12-
background-image: url( 'bg.png' );
12+
background-image: url( 'res/bg.png' );
1313
font-family: 'Hind';
1414
}
1515

widgets_overview_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main(self):
2525
mainContainer = gui.Widget(600, 530, True, 10)
2626

2727
subContainerLeft = gui.Widget(300, 370, False, 10)
28-
self.img = gui.Image(100, 100, 'logo.png')
28+
self.img = gui.Image(100, 100, 'res/logo.png')
2929

3030
self.table = gui.Table(300, 200)
3131
row = gui.TableRow()

0 commit comments

Comments
 (0)