mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
stupid typo in latest fix ('Name' should be 'name')
This commit is contained in:
parent
524e9a450b
commit
5468a7b76b
2 changed files with 2 additions and 2 deletions
|
@ -167,7 +167,7 @@ class Misc:
|
|||
self.tk.call('focus', 'none')
|
||||
def focus_get(self):
|
||||
name = self.tk.call('focus')
|
||||
if name == 'none' or not Name: return None
|
||||
if name == 'none' or not name: return None
|
||||
return self._nametowidget(name)
|
||||
def tk_focusNext(self):
|
||||
name = self.tk.call('tk_focusNext', self._w)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue