Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief shortcuts to *funcwin* 

4""" 

5from .frame_params import open_window_params 

6from .frame_function import open_window_function 

7from .main_window import main_loop_functions 

8from .patchs_windows import fix_python35_dll 

9 

10 

11def check_icon(): 

12 """ 

13 Checks the ico was installed with the module. 

14 

15 @return boolean 

16 """ 

17 import os 

18 path = os.path.dirname(__file__) 

19 icon = os.path.join(path, "project_ico.ico") 

20 if not os.path.exists(icon): 

21 import sys 

22 if sys.version_info[0] == 2: 

23 raise OSError(icon) 

24 else: 

25 raise FileNotFoundError(icon) 

26 return True