I have two functions CheckOs
and _get_keyfile
as below:
1:CheckOs(without considering Mac)
JavaScript
x
5
1
def CheckOs():
2
if os.name == 'nt':
3
return "Windows"
4
return "Linux"
5
2:_get_keyfile
JavaScript
1
11
11
1
def _get_keyfile(stdscr):
2
keyfile = Tk()
3
keyfile.withdraw()
4
if CheckOs() == "Windows":
5
keyfile.KeyfileName = filedialog.askopenfilename(initialdir="/", title="Selecta Key File",filetypes=(("Anfu Keyfiles", "*.anky"),))
6
#if not windows then linux,IGNOREEEEEEEEE MAC
7
keyfile.KeyfileName = filedialog.askopenfilename(initialdir="/home", title="Select a Key File",filetypes=(("Anfu Keyfiles", "*.anky"),))
8
keyfile.destroy()
9
return keyfile.KeyfileName
10
11
the problem is when ever _get_keyfile
Function is executed it opens the File Dialog to select the file but opens again after I select the file and the file is selected after the second time. The problem only persists on Windows on Linux its working fine.
I want to know if I am doing something wrong or is that a bug in Tk .Any help Appreciated
Advertisement
Answer
In the _get_keyfile
function change the function to include a else after the if to avoid opening dialog box. If it’s not a Linux OS
JavaScript
1
13
13
1
def _get_keyfile(stdscr):
2
keyfile = Tk()
3
keyfile.withdraw()
4
if CheckOs() == "Windows":
5
keyfile.KeyfileName = filedialog.askopenfilename(initialdir="/", title="Select a Key File",filetypes=(("Anfu Keyfiles", "*.anky"),))
6
7
else:
8
keyfile.KeyfileName = filedialog.askopenfilename(initialdir="/home", title="Select a Key File",filetypes=(("Anfu Keyfiles", "*.anky"),))
9
10
keyfile.destroy()
11
return keyfile.KeyfileName
12
13
As a result the dialog box will only pop-up one time
Happy Coding!