Skip to content

Commit e41d4c6

Browse files
committed
2.0.6 Improve the navigation
1 parent 7af3721 commit e41d4c6

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

easy_paste.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,17 @@ def __init__(self):
3131

3232
args_file = {'filetypes': [('csv', '*.csv')]}
3333

34-
btn_file = tkinter.Button(text='Import Analysis Files')
34+
title_import = tkinter.Label(text=r'Import/Export', font=('', 18))
35+
title_import.grid(sticky='w', padx=25)
36+
3537
var_files = tkinter.StringVar()
3638
var_files.set(ph_ent_file)
37-
btn_file.grid(columnspan=2, pady=5)
38-
3939
ent_file = tkinter.Entry(width=55, textvariable=var_files, foreground=str_gray)
4040
ent_file.grid(columnspan=2, pady=5)
4141

42+
btn_file = tkinter.Button(text='Import Analysis Files')
43+
btn_file.grid(columnspan=2, pady=5)
44+
4245
row_open = ep_scripts.get_next_grid_row(root)
4346

4447
var_result = tkinter.BooleanVar()

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://github.com/ShunSakurai/easy_paste/
1111

1212
MIT License
1313

14-
Copyright (c) 2016-2019 Shun Sakurai
14+
Copyright (c) 2016-2020 Shun Sakurai
1515

1616
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1717

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'dest_base': 'Easy Paste',
1313
'icon_resources': [(1, './icons/easy_paste_icon.ico')],
1414
'script': 'easy_paste.py',
15-
'version': '2.0.5'
15+
'version': '2.0.6'
1616
}
1717

1818
dict_options = {

0 commit comments

Comments
 (0)