Skip to content

Commit

Permalink
Fix keys in Text Editor by limiting key range to activate autocomplete (
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 authored Oct 1, 2024
1 parent 86c11f4 commit 81b31da
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.2, but RIDE is known to work w

`pip install -U robotframework-ride`

(3.8 <= python <= 3.12) Install current development version (**2.1dev82**) with:
(3.8 <= python <= 3.12) Install current development version (**2.1dev83**) with:

`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`

Expand Down
2 changes: 1 addition & 1 deletion src/robotide/application/releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">python -m robotide.postinstall -install</pre>
<p>or</p>
<pre class="literal-block">ride_postinstall.py -install</pre>
<p>RIDE {VERSION} was released on 29/September/2024.</p>
<p>RIDE {VERSION} was released on 01/October/2024.</p>
<!-- <br/>
<h3>May The Fourth Be With You!</h3>
<h3>Celebrate the bank holiday, 10th June, Day of Portugal, Portuguese Communities and Camões!!</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/editor/texteditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2443,7 +2443,7 @@ def on_key_pressed(self, event):
self.key_trigger = 0
else:
if self.autocomplete and not event.ControlDown():
if key > 32 and self.key_trigger > -1:
if 32 < key < 256 and self.key_trigger > -1:
if self.key_trigger < 2:
self.key_trigger += 1
else:
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#
# Automatically generated by `tasks.py`.

VERSION = 'v2.1dev82'
VERSION = 'v2.1dev83'

0 comments on commit 81b31da

Please sign in to comment.