Skip to content

Commit

Permalink
Fix selection of item when right-click on Project Explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 committed Aug 11, 2024
1 parent cf773ad commit dba290f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The color of the caret is the same as `setting` and will be adjusted for better

=== Fixed

- Fixed wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.
- Fixed delete variable from Test Suite settings remaining in Project Explorer.
- Fixed obsfuscation of Libraries and Metadata panels when expanding Settings in Grid Editor and Linux systems.

Expand Down
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.1, but RIDE is known to work w

`pip install -U robotframework-ride`

(3.8 <= python <= 3.12) Install current development version (**2.1dev66**) with:
(3.8 <= python <= 3.12) Install current development version (**2.1dev67**) with:

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

Expand Down
2 changes: 2 additions & 0 deletions src/robotide/application/CHANGELOG.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
</li></ul></div></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_changed"></a>1.2. Changed</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
Allow to do auto-suggestions of keywords in Text Editor without a shortcut, if you want to enable or disable this feature you can config in <code class="literal">Tools -&gt; Preferences -&gt; Text Editor -&gt; Enable auto suggestions</code>.
</li></ul></div></div><div class="section"><div class="titlepage"><div><div><h3 class="title"><a id="_fixed"></a>1.3. Fixed</h3></div></div></div><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
Fixed wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.
</li><li class="listitem">
Fixed delete variable from Test Suite settings remaining in Project Explorer.
</li><li class="listitem">
Fixed obsfuscation of Libraries and Metadata panels when expanding Settings in Grid Editor and Linux systems.
Expand Down
3 changes: 2 additions & 1 deletion src/robotide/application/releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ def set_content(self, html_win, content):
</ul>
<p><strong>New Features and Fixes Highlights</strong></p>
<ul class="simple">
<li>Fixed wrong item selection, like Test Suite, when doing right-click actions in Project Explorer.</li>
<li>Fixed delete variable from Test Suite settings remaining in Project Explorer.</li>
<li>Added <b>caret style</b> to change insert caret to 'block' or 'line' in Text Editor, by editing
<em>settings.cfg</em>. The color of the caret is the same as 'setting' and will be adjusted for better contrast with the
Expand Down Expand Up @@ -322,7 +323,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">
python -m robotide.postinstall -install
</pre>
<p>RIDE {VERSION} was released on 09/August/2024.</p>
<p>RIDE {VERSION} was released on 11/August/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
3 changes: 3 additions & 0 deletions src/robotide/ui/treenodehandlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ def node(self):
return self._node

def show_popup(self):
node = self._tree.controller.find_node_by_controller(self.controller)
if node:
wx.CallLater(500, self._tree.SelectItem, node)
self._popup_creator.show(self._tree, PopupMenuItems(self, self._actions, self._actions_nt), self.controller)

@staticmethod
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.1dev66'
VERSION = 'v2.1dev67'

0 comments on commit dba290f

Please sign in to comment.