Skip to content

Commit

Permalink
Move "drink buchen" a bit up to not overlap with buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
soerface committed Oct 31, 2024
1 parent d1c179c commit 2f34d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drinks_touch/screens/git/log_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ def on_start(self, *args, **kwargs):
[
Label(
text=f"{commit.date.strftime('%Y-%m-%d %H:%M:%S')} {commit.author}",
size=25,
size=15,
color=color,
),
Label(
text=commit.title,
size=15,
size=10,
color=color,
),
]
Expand Down
6 changes: 3 additions & 3 deletions drinks_touch/screens/wait_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@ def on_start(self, *args, **kwargs):
self.scanned_info = [
self.barcode_label,
Button(
pos=(50, 600),
pos=(50, 450),
text="drink buchen",
size=52,
on_click=self.set_member,
),
Button(
pos=(50, 700),
pos=(50, 550),
text="Nur Statistik",
on_click=self.stat_drink,
),
Button(
pos=(350, 700),
pos=(350, 550),
text="nope",
on_click=self.btn_reset,
),
Expand Down

0 comments on commit 2f34d65

Please sign in to comment.