cuu 5 years ago
parent
commit
851148dd65
1 changed files with 3 additions and 1 deletions
  1. 3 1
      sys.py/UI/main_screen.py

+ 3 - 1
sys.py/UI/main_screen.py

@@ -518,15 +518,17 @@ class MainScreen(object):
             self.EasingAllPageRight()
             #self.SwapAndShow()
         """
+        
         if event.key == pygame.K_t:
             self.DrawRun()
             self.SwapAndShow()
         
+        """
         if event.key == CurKeys["Space"]:
             self._CounterScreen.Draw()
             self._CounterScreen.SwapAndShow()
             self._CounterScreen.StartCounter()
-            
+        """ 
         ## leave rest to Pages
         current_page_key_down_cb = getattr(self._CurrentPage,"KeyDown",None)
         if current_page_key_down_cb != None: