From 0ad3557f4eab78de3dc0ad885bd0deca3ba25abf Mon Sep 17 00:00:00 2001 From: horsesword Date: Thu, 5 May 2022 10:55:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4UI=E6=98=BE=E7=A4=BA=EF=BC=8C?= =?UTF-8?q?=E5=B0=86=E6=A0=87=E7=AD=BE=E3=80=81=E6=97=A5=E6=9C=9F=E3=80=81?= =?UTF-8?q?=E5=A4=A7=E5=B0=8F=E9=83=BD=E6=94=BE=E5=9C=A8=E5=8F=B3=E4=BE=A7?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tagdox.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tagdox.py b/tagdox.py index 9aad5f8..1231e90 100644 --- a/tagdox.py +++ b/tagdox.py @@ -50,7 +50,7 @@ URL_HELP = 'https://gitee.com/horse_sword/tagdox' # 帮助的超链接,目前 URL_ADV = 'https://gitee.com/horse_sword/tagdox/issues' # 提建议的位置 URL_CHK_UPDATE = 'https://gitee.com/horse_sword/tagdox/releases' # 检查更新的位置 TAR = 'Tagdox / 标签文库' # 程序名称 -VER = 'v0.23.1.2' # 版本号 +VER = 'v0.24.0.0' # 版本号 """ ## 近期更新说明 @@ -5460,17 +5460,17 @@ class MainApp: self.tree.column('#0', width=700, anchor='w') # ,stretch=tk.NO) self.tree.column('index', width=30, anchor='center') self.tree.column('file', width=600, minwidth=100, anchor='w') - self.tree.column('tags', width=200, minwidth=100, anchor='w') - self.tree.column('modify_time', width=120, minwidth=120, anchor='w') # ,stretch=tk.NO) - self.tree.column('size', width=60, minwidth=80, anchor='w') # ,stretch=tk.NO) + self.tree.column('tags', width=200, minwidth=100, anchor='e') + self.tree.column('modify_time', width=120, minwidth=120, anchor='e') # ,stretch=tk.NO) + self.tree.column('size', width=60, minwidth=80, anchor='e') # ,stretch=tk.NO) self.tree.column('file0', width=80, anchor='w') # self.tree.heading('#0', text='名称', anchor='w', command=tree_order_filename) self.tree.heading("index", text="序号", anchor='center') self.tree.heading("file", text="文件名", anchor='w', command=tree_order_filename) - self.tree.heading("tags", text="标签", anchor='w', command=tree_order_tag) - self.tree.heading("modify_time", text="修改时间", anchor='w', command=tree_order_modi_time) - self.tree.heading("size", text="大小(kB)", anchor='w', command=tree_order_size) + self.tree.heading("tags", text="标签", anchor='e', command=tree_order_tag) + self.tree.heading("modify_time", text="修改时间", anchor='e', command=tree_order_modi_time) + self.tree.heading("size", text="大小(kB)", anchor='e', command=tree_order_size) self.tree.heading("file0", text="完整路径", anchor='w', command=tree_order_path) # vPDX = 10 # 10 -- GitLab