提交 33c4dc7a 编写于 作者: H horsesword

修复了输入框覆盖的错误。

上级 5cc89d7d
......@@ -95,6 +95,8 @@
## 更新说明
#### v0.12.0.2 2021年7月9日
修复了输入框覆盖的错误。
#### v0.12.0.1 2021年7月9日
修复了提示文字的错误。
#### v0.12.0.0 2021年7月9日
......
因为 它太大了无法显示 source diff 。你可以改为 查看blob
因为 它太大了无法显示 source diff 。你可以改为 查看blob
......@@ -39,7 +39,7 @@
[],
False,
False,
1625763690,
1625800164,
[('runw.exe',
'c:\\users\\majian\\anaconda3\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit\\runw.exe',
'EXECUTABLE')])
......@@ -374,10 +374,10 @@
('tracemalloc',
'c:\\users\\majian\\anaconda3\\lib\\tracemalloc.py',
'PYMODULE'),
('typing', 'c:\\users\\majian\\anaconda3\\lib\\typing.py', 'PYMODULE'),
('stringprep',
'c:\\users\\majian\\anaconda3\\lib\\stringprep.py',
'PYMODULE'),
('typing', 'c:\\users\\majian\\anaconda3\\lib\\typing.py', 'PYMODULE'),
('_py_abc', 'c:\\users\\majian\\anaconda3\\lib\\_py_abc.py', 'PYMODULE'),
('shutil', 'c:\\users\\majian\\anaconda3\\lib\\shutil.py', 'PYMODULE'),
('tarfile', 'c:\\users\\majian\\anaconda3\\lib\\tarfile.py', 'PYMODULE'),
......
......@@ -15,7 +15,7 @@ IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
yourself tracking down the missing module. Thanks!
missing module named 'win32com.gen_py' - imported by win32com (conditional, optional), c:\users\majian\anaconda3\lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_win32comgenpy.py (top-level)
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional)
missing module named org - imported by copy (optional)
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), http.server (delayed, optional), webbrowser (delayed), netrc (delayed, conditional), getpass (delayed)
......@@ -27,7 +27,7 @@ missing module named java - imported by platform (delayed)
missing module named _scproxy - imported by urllib.request (conditional)
missing module named _winreg - imported by platform (delayed, optional)
missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional)
missing module named org - imported by pickle (optional)
missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional)
missing module named grp - imported by shutil (optional), tarfile (optional)
missing module named posix - imported by os (conditional, optional)
missing module named resource - imported by posix (top-level)
......@@ -260,7 +260,7 @@ imported by:
<a target="code" href="" type="text/plain"><tt>'org.python'</tt></a>
<span class="moduletype">MissingModule</span> <div class="import">
imported by:
<a href="#copy">copy</a>
<a href="#pickle">pickle</a>
&#8226; <a href="#xml.sax">xml.sax</a>
</div>
......@@ -1654,8 +1654,8 @@ imported by:
<a target="code" href="///C:/users/majian/anaconda3/lib/copy.py" type="text/plain"><tt>copy</tt></a>
<span class="moduletype">SourceModule</span> <div class="import">
imports:
<a href="#'org.python'">'org.python'</a>
&#8226; <a href="#copyreg">copyreg</a>
<a href="#copyreg">copyreg</a>
&#8226; <a href="#org">org</a>
&#8226; <a href="#types">types</a>
&#8226; <a href="#weakref">weakref</a>
......@@ -6198,7 +6198,7 @@ imported by:
<a target="code" href="" type="text/plain"><tt>org</tt></a>
<span class="moduletype">MissingModule</span> <div class="import">
imported by:
<a href="#pickle">pickle</a>
<a href="#copy">copy</a>
</div>
......@@ -6333,7 +6333,8 @@ imported by:
<a target="code" href="///C:/users/majian/anaconda3/lib/pickle.py" type="text/plain"><tt>pickle</tt></a>
<span class="moduletype">SourceModule</span> <div class="import">
imports:
<a href="#_compat_pickle">_compat_pickle</a>
<a href="#'org.python'">'org.python'</a>
&#8226; <a href="#_compat_pickle">_compat_pickle</a>
&#8226; <a href="#_pickle">_pickle</a>
&#8226; <a href="#codecs">codecs</a>
&#8226; <a href="#copyreg">copyreg</a>
......@@ -6341,7 +6342,6 @@ imports:
&#8226; <a href="#functools">functools</a>
&#8226; <a href="#io">io</a>
&#8226; <a href="#itertools">itertools</a>
&#8226; <a href="#org">org</a>
&#8226; <a href="#pprint">pprint</a>
&#8226; <a href="#re">re</a>
&#8226; <a href="#struct">struct</a>
......
......@@ -26,9 +26,10 @@ import shutil
URL_HELP='https://gitee.com/horse_sword/my-local-library' # 帮助的超链接,目前是 gitee 主页
URL_ADV='https://gitee.com/horse_sword/my-local-library/issues' # 提建议的位置
TAR='Tagdox / 标签文库' # 程序名称
VER='v0.12.0.1' # 版本号
VER='v0.12.0.2' # 版本号
# v0.12.0.0 制作完成了居中的进度条。
# v0.12.0.1 修复了提示文字的错误。
# v0.12.0.2 修复了输入框覆盖的错误。
#
# 已知bug:进度条出现之后,快捷键会失效。怀疑是进度条消失后,焦点没有回到主窗口上。
......@@ -815,11 +816,12 @@ class my_progress_window:
self.prog_bar.update()
if value>0:
self.input_window.deiconify()
self.input_window.lift()
self.input_window.focus_force()
self.input_window.deiconify() # 置顶
# self.input_window.lift() # 置顶,但是会导致后面失去输入能力
# self.input_window.focus_force()
self.input_window.grab_set() #模态
if self.progress>=100:
self.input_window.destroy()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册