New dialog icons (from Remix Icon)
BIN
data/images/dialog/remix/error.gif
Normal file
After Width: | Height: | Size: 578 B |
BIN
data/images/dialog/remix/error.png
Normal file
After Width: | Height: | Size: 877 B |
BIN
data/images/dialog/remix/info.gif
Normal file
After Width: | Height: | Size: 476 B |
BIN
data/images/dialog/remix/info.png
Normal file
After Width: | Height: | Size: 835 B |
1
data/images/dialog/remix/info.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Icons by remixicon.com
|
BIN
data/images/dialog/remix/question.gif
Normal file
After Width: | Height: | Size: 478 B |
BIN
data/images/dialog/remix/question.png
Normal file
After Width: | Height: | Size: 750 B |
BIN
data/images/dialog/remix/warning.gif
Normal file
After Width: | Height: | Size: 474 B |
BIN
data/images/dialog/remix/warning.png
Normal file
After Width: | Height: | Size: 858 B |
|
@ -59,7 +59,7 @@ from pysollib.resource import Music, MusicManager
|
|||
from pysollib.resource import Sample, SampleManager
|
||||
from pysollib.resource import Tile, TileManager
|
||||
from pysollib.settings import DEBUG
|
||||
from pysollib.settings import PACKAGE, VERSION_TUPLE, WIN_SYSTEM
|
||||
from pysollib.settings import PACKAGE, VERSION_TUPLE # , WIN_SYSTEM
|
||||
from pysollib.settings import TOOLKIT
|
||||
from pysollib.util import IMAGE_EXTENSIONS
|
||||
from pysollib.winsystems import TkSettings
|
||||
|
@ -509,10 +509,11 @@ class Application:
|
|||
"joker11_100_774",
|
||||
"joker10_100",):
|
||||
self.gimages.logos.append(self.dataloader.findImage(f, dirname))
|
||||
if WIN_SYSTEM == 'win32':
|
||||
dirname = os.path.join('images', 'dialog', 'default')
|
||||
else:
|
||||
dirname = os.path.join('images', 'dialog', 'bluecurve')
|
||||
# if WIN_SYSTEM == 'win32':
|
||||
# dirname = os.path.join('images', 'dialog', 'default')
|
||||
# else:
|
||||
# dirname = os.path.join('images', 'dialog', 'bluecurve')
|
||||
dirname = os.path.join('images', 'dialog', 'remix')
|
||||
for f in ('error', 'info', 'question', 'warning'):
|
||||
fn = self.dataloader.findImage(f, dirname)
|
||||
im = loadImage(fn)
|
||||
|
|