mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
+ added pysol.desktop
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@216 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
0ef9bf474f
commit
ff45d8e1cd
4 changed files with 8 additions and 2 deletions
|
@ -12,6 +12,7 @@ include pysollib/tk/*.py pysollib/tile/*.py pysollib/pysolgtk/*.py
|
|||
include pysollib/games/*.py pysollib/games/special/*.py
|
||||
include pysollib/games/ultra/*.py pysollib/games/mahjongg/*.py
|
||||
include data/tcl/*.tcl
|
||||
include data/pysol.desktop
|
||||
include data/pysolfc.glade
|
||||
graft data/themes
|
||||
include scripts/build.bat scripts/create_iss.py scripts/mahjongg_utils.py
|
||||
|
|
|
@ -77,7 +77,8 @@ namespace eval tile::theme::clearlooks {
|
|||
|
||||
## Buttons.
|
||||
#
|
||||
style configure TButton -padding {10 0}
|
||||
#style configure TButton -padding {10 0} -anchor center
|
||||
style configure TButton -padding {5 5} -anchor center -width -9
|
||||
style layout TButton {
|
||||
Button.button -children {
|
||||
Button.focus -children {
|
||||
|
|
|
@ -87,7 +87,7 @@ class MfxStatusbar:
|
|||
self._label_column += 1
|
||||
setattr(self, name + '_frame', frame)
|
||||
self._widgets.append(frame)
|
||||
label = Tile.Label(frame, width=width)
|
||||
label = Tile.Label(frame, width=width, anchor='center')
|
||||
label.pack(expand=True, fill='both')
|
||||
setattr(self, name + '_label', label)
|
||||
self._widgets.append(label)
|
||||
|
|
4
setup.py
4
setup.py
|
@ -41,10 +41,14 @@ for d in ddirs:
|
|||
|
||||
if os.name == 'posix':
|
||||
data_files.append(('share/pixmaps', ['data/pysol.xbm', 'data/pysol.xpm']))
|
||||
data_files.append(('share/icons',
|
||||
['data/images/misc/pysol01.png',
|
||||
'data/images/misc/pysol02.png',]))
|
||||
for l in ('ru', 'ru_RU'):
|
||||
data_files.append(('share/locale/%s/LC_MESSAGES' % l,
|
||||
['locale/%s/LC_MESSAGES/pysol.mo' % l]))
|
||||
data_files.append((data_dir, ['data/pysolfc.glade']))
|
||||
data_files.append(('share/applications', ['data/pysol.desktop']))
|
||||
|
||||
##from pprint import pprint; pprint(data_files)
|
||||
##import sys; sys.exit()
|
||||
|
|
Loading…
Add table
Reference in a new issue