made icons in gamedialog themecolorable

This commit is contained in:
Christian Moser 2025-01-02 18:55:09 +01:00
parent c54ae160f7
commit 0bb7227168
5 changed files with 44 additions and 44 deletions

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,44 +1,44 @@
# vim: syn=python ts=4 sts=4 sw=4 smartindent autoindent expandtab # vim: syn=python ts=4 sts=4 sw=4 smartindent autoindent expandtab
import sys,os import sys,os
PROJECT_ROOT = os.path.dirname(os.path.dirname(__file__)) PROJECT_ROOT = os.path.dirname(os.path.dirname(__file__))
sys.path.insert(0,PROJECT_ROOT) sys.path.insert(0,PROJECT_ROOT)
import sgbackup import sgbackup
project = 'sgbackup' project = 'sgbackup'
copyright = '2024-2025, Christian Moser' copyright = '2024-2025, Christian Moser'
author = 'Christian Moser' author = 'Christian Moser'
version = sgbackup.__version__ version = sgbackup.__version__
exclude_patterns = [ exclude_patterns = [
'_build', '_build',
'Thumbs.db', 'Thumbs.db',
'.DS_Store', '.DS_Store',
'*~', '*~',
'*.swp', '*.swp',
'*.tmp', '*.tmp',
'*.temp', '*.temp',
'*.log', '*.log',
] ]
extensions = [ extensions = [
'sphinx.ext.autodoc' 'sphinx.ext.autodoc'
] ]
language = 'en' language = 'en'
master_doc = 'index' master_doc = 'index'
source_suffix = '.rst' source_suffix = '.rst'
templates_path = ['templates'] templates_path = ['templates']
html_theme = 'sphinx_rtd_theme' html_theme = 'sphinx_rtd_theme'
html_show_sourcelink = False html_show_sourcelink = False
#html_static_path = ['_static'] #html_static_path = ['_static']
autoclass_content='both' autoclass_content='both'
autodoc_class_signature='mixed' autodoc_class_signature='mixed'
autodoc_default_options={ autodoc_default_options={
'member_order':'alphabetical', 'member_order':'alphabetical',
'undoc_members':'true', 'undoc_members':'true',
'exclude_memebers':'__weakref__', 'exclude_memebers':'__weakref__',
} }