|
34 | 34 | import logging
|
35 | 35 | import ipaddress
|
36 | 36 |
|
37 |
| -BUILD_MODE = "WIN32" # MSIX or WIN32 |
| 37 | +BUILD_MODE = "MSIX" # MSIX or WIN32 |
38 | 38 |
|
39 | 39 | version = "1.3.9"
|
40 | 40 |
|
@@ -512,7 +512,7 @@ def get_pos():
|
512 | 512 | long = win32gui.GetWindowLong(hwnd, win32con.GWL_EXSTYLE)
|
513 | 513 | win32gui.SetWindowLong(hwnd, win32con.GWL_EXSTYLE,
|
514 | 514 | long | win32con.WS_EX_LAYERED)
|
515 |
| - win32con.WS_BORDER |
| 515 | + #win32con.WS_BORDER |
516 | 516 |
|
517 | 517 | #win32gui.SetLayeredWindowAttributes(HWND, win32api.RGB(*[100, 100, 100]), int(255), win32con.LWA_COLORKEY)
|
518 | 518 |
|
@@ -3398,7 +3398,7 @@ def reseticon():
|
3398 | 3398 | save_b.grid(column=1, row=0, sticky="SWE", padx=10)
|
3399 | 3399 |
|
3400 | 3400 | test_b = ttk.Button(frame_3, text="Test Configuration", command=test)
|
3401 |
| - test_b.grid(column=2, row=0, sticky="SE", padx=10) |
| 3401 | + test_b.grid(column=2, row=0, sticky="SE", padx=10, ipadx=5) |
3402 | 3402 |
|
3403 | 3403 | frame_3.grid(row=2, column=0, padx=20, pady=20, sticky="SWE", columnspan=2)
|
3404 | 3404 |
|
@@ -4199,7 +4199,7 @@ def __init__(self, MainWindow, expanded_text, collapsed_text):
|
4199 | 4199 | # Creating Checkbutton
|
4200 | 4200 | self._button = ttk.Checkbutton(self, variable=self._variable,
|
4201 | 4201 | command=self._activate, style="TButton")
|
4202 |
| - self._button.grid(row=0, column=0) |
| 4202 | + self._button.grid(row=0, column=0, ipadx=5) |
4203 | 4203 | # Create a Horizontal line
|
4204 | 4204 | # self._separator = ttk.Separator(self, orient="horizontal")
|
4205 | 4205 | # self._separator.grid(row=0, column=1, sticky="we")
|
|
0 commit comments