From 9a9cc2e39193dc43a49212d84a2490669576c5e6 Mon Sep 17 00:00:00 2001 From: mar77i Date: Wed, 18 Dec 2024 00:14:12 +0100 Subject: [PATCH] smaller icons --- .gitignore | 1 + zenbook_conf.py | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 07da734..5708aad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.desktop .idea/ __pycache__/ venv/ diff --git a/zenbook_conf.py b/zenbook_conf.py index b72ae0e..afe2abc 100755 --- a/zenbook_conf.py +++ b/zenbook_conf.py @@ -132,8 +132,8 @@ class ZenbookConf: self.touch_switch.draw(self.surf) touchscreen.draw( self.surf, - (self.touch_switch.rect.right + 68, self.touch_switch.rect.centery - 132), - (12, 12), + (self.touch_switch.rect.right + 68, self.touch_switch.rect.centery - 88), + (8, 8), "gray", ) self.touch_button.draw(self.surf) @@ -141,8 +141,8 @@ class ZenbookConf: self.stylus_switch.draw(self.surf) stylus.draw( self.surf, - (self.stylus_switch.rect.right + 68, self.stylus_switch.rect.centery - 132), - (12, 12), + (self.stylus_switch.rect.right + 68, self.stylus_switch.rect.centery - 88), + (8, 8), "gray", ) self.stylus_button.draw(self.surf) -- 2.47.1