mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 02:24:16 +02:00
[improvement][ui] hdpi settings on the config file
This commit is contained in:
@@ -31,7 +31,6 @@ def main():
|
||||
args = app_args.read()
|
||||
|
||||
logger = logs.new_logger(__app_name__, bool(args.logs))
|
||||
app_args.validate(args, logger)
|
||||
|
||||
local_config = config.read_config(update_file=True)
|
||||
|
||||
@@ -71,7 +70,10 @@ def main():
|
||||
app.setApplicationVersion(__version__)
|
||||
app_icon = util.get_default_icon()[1]
|
||||
app.setWindowIcon(app_icon)
|
||||
app.setAttribute(Qt.AA_UseHighDpiPixmaps) # This fix images on HDPI resolution, not tested on non HDPI
|
||||
|
||||
if local_config['ui']['hdpi']:
|
||||
logger.info("HDPI settings activated")
|
||||
app.setAttribute(Qt.AA_UseHighDpiPixmaps) # This fix images on HDPI resolution, not tested on non HDPI
|
||||
|
||||
if local_config['ui']['style']:
|
||||
app.setStyle(str(local_config['ui']['style']))
|
||||
|
||||
@@ -15,11 +15,3 @@ def read() -> Namespace:
|
||||
parser.add_argument('--show-panel', action="store_true", help='Shows the management panel after the app icon is attached to the tray.')
|
||||
parser.add_argument('--reset', action="store_true", help='Removes all configuration and cache files')
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
def validate(args: Namespace, logger: logging.Logger):
|
||||
|
||||
if args.logs == 1:
|
||||
logger.info("Logs are enabled")
|
||||
|
||||
return args
|
||||
|
||||
@@ -43,7 +43,9 @@ def read_config(update_file: bool = False) -> dict:
|
||||
'default_icon': None,
|
||||
'updates_icon': None
|
||||
},
|
||||
'style': None
|
||||
'style': None,
|
||||
'hdpi': True
|
||||
|
||||
},
|
||||
'download': {
|
||||
'multithreaded': True,
|
||||
|
||||
Reference in New Issue
Block a user