Skip to content

bpo-15786: IDLE: Fix autocomletetion mouse click and freeze behavior#1517

Closed
louisom wants to merge 6 commits into
python:masterfrom
louisom:bpo-15786
Closed

bpo-15786: IDLE: Fix autocomletetion mouse click and freeze behavior#1517
louisom wants to merge 6 commits into
python:masterfrom
louisom:bpo-15786

Conversation

@louisom

@louisom louisom commented May 9, 2017

Copy link
Copy Markdown
Contributor

No description provided.

@mention-bot

Copy link
Copy Markdown

@lulouie, thanks for your PR! By analyzing the history of the files in this pull request, we identified @kbkaiser, @terryjreedy and @Yhg1s to be potential reviewers.

The root cause is we destory autocompletewindow to fast,
thus tk can't focusOn widget, we should re-focus on widget
first, then destory autocompletewindow.
@louisom

louisom commented May 10, 2017

Copy link
Copy Markdown
Contributor Author

@terryjreedy This fixed the MacOS freeze and double click disappear problem, please help to take a review

@louisom louisom changed the title bpo-15786: Fix autocomletetion box mouse behavior bpo-15786: IDLE: Fix autocomletetion mouse click and freeze behavior May 10, 2017

@terryjreedy terryjreedy left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trivial formatting change.
Does not solve issue on Windows.

Comment thread Lib/idlelib/autocomplete_w.py Outdated
# This will be trigger when focus on widget or autocompletewindow
if self.is_active():
self.hide_window()
if self.widget == self.widget.focus_get() or not self.widget.focus_get():

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2nd if is equivalent to 'and', and line is too long. This works and conforms to PEP8.
if (self.is_active() and
(self.widget == self.widget.focus_get()
or not self.widget.focus_get())):
self.hide_window()

Comment thread Lib/idlelib/autocomplete_w.py Outdated
acw.wm_geometry("+%d+%d" % (new_x, new_y))

def hide_event(self, event):
# This will be trigger when focus on widget or autocompletewindow

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make proper docstring, which I believe
"Hide autocomplete list if it exists and does not have focus."

@louisom

louisom commented May 11, 2017

Copy link
Copy Markdown
Contributor Author

I must admire your work in IDLE, terry. Tk has bunch of cross-platform holes. On windows it can't work is because somehow winconfig will be trigger multiple time (just like a infinity loop), and let Tk can't respond to Double-ButtonRelease.

The fix will unbind winconfig_event when we are in the windows platform to prevent this problem.

@louisom

louisom commented May 25, 2017

Copy link
Copy Markdown
Contributor Author

Close this issue and transfer to #1811

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants