File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,10 +116,10 @@ def stop_scroll(self, event):
116116 self .canvas .config (cursor = "" )
117117
118118 def scroll_to_start (self ):
119- self .canvas .yview_moveto (0.05 )
119+ self .canvas .yview_moveto (0.01 )
120120
121121 def scroll_to_end (self ):
122- self .canvas .yview_moveto (0.95 )
122+ self .canvas .yview_moveto (0.99 )
123123
124124 # Load page from popup input
125125 def scroll_to_page (self ):
@@ -206,7 +206,7 @@ def update_title_name(self):
206206 total_size = len (os .listdir (self .path ))
207207 current_page = math .floor (self .image_index / self .image_load ) + 1
208208 total_pages = math .ceil (max (1 , total_size / self .image_load ))
209- self .window .title (f"[WebtoonReader] - { self .manga_name } : { os .path .basename (self .path )} | { current_page } out of { total_pages } " )
209+ self .window .title (f"[WebtoonReader] - { self .manga_name } : { os .path .basename (self .path )} | Page ( { current_page } / { total_pages } ) " )
210210
211211 # Natural sort files
212212 def natural_sort (self , l ):
You can’t perform that action at this time.
0 commit comments