Changeset 80996d0 in flowtimer


Ignore:
Timestamp:
08/29/24 15:32:44 (9 months ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
guix
Children:
58e7315
Parents:
c251a80
Message:

rename toggle_tick to toggle_play_pause

File:
1 edited

Legend:

Unmodified
Added
Removed
  • flowtimer/main.py

    rc251a80 r80996d0  
    7979
    8080        self.freeze_button = tk.Button(self.button_frame, text="PLAY/PAUSE",
    81                                        font="courier 14", width=20, command=self.toggle_tick)
     81                                       font="courier 14", width=20, command=self.toggle_play_pause)
    8282        self.freeze_button.pack(side='left', fill='both', ipady=20, expand=True)
    8383
     
    155155        self.schedule.skip()
    156156
    157     def toggle_tick(self):
     157    def toggle_play_pause(self):
    158158        if self.schedule.paused():
    159159            self.freeze_button.config(relief="raised", fg='black')
Note: See TracChangeset for help on using the changeset viewer.