Skip to content

Commit 69cdfe6

Browse files
committed
v0.4.0 Update
- Moved position of progress bar to above log window - Updated screenshots in README. Signed-off-by: schlopp96 <71921821+schlopp96@users.noreply.github.com>
1 parent 9210269 commit 69cdfe6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

PyFiTransfer/appgui/gui.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'Browse for directory containing the files you wish to transfer.')
1515
],
1616
[
17-
sg.Text('Target Directory:', s=(12, 1)),
17+
sg.Text('File Destination:', s=(12, 1)),
1818
sg.VSeperator(),
1919
sg.Input(key='-TargetFolderInput-', expand_x=True),
2020
sg.VSeperator(),
@@ -34,6 +34,13 @@
3434
sg.Button('Start Transfer',
3535
key='-Transfer-',
3636
button_color=('white', 'green'))
37+
],
38+
[
39+
sg.ProgressBar(max_value=50,
40+
size=(30, 10),
41+
orientation='horizontal',
42+
key='-ProgressBar-',
43+
expand_x=True)
3744
], [sg.HSeparator()],
3845
[
3946
sg.Multiline(s=(30, 30),
@@ -45,13 +52,6 @@
4552
write_only=True,
4653
auto_refresh=True,
4754
autoscroll=True)
48-
],
49-
[
50-
sg.ProgressBar(max_value=50,
51-
size=(30, 10),
52-
orientation='horizontal',
53-
key='-ProgressBar-',
54-
expand_x=True)
5555
], [sg.HSeparator()], [sg.Exit(button_color=('white', 'firebrick4'))]
5656
]
5757

img/PyFiTransfer-CLI.png

0 Bytes
Loading

img/PyFiTransfer-GUI.png

513 Bytes
Loading

0 commit comments

Comments
 (0)