Skip to content

Commit

Permalink
Merge pull request robotframework#2879 from HelioGuilherme66/improve_…
Browse files Browse the repository at this point in the history
…grid_scrolling

Change scrolling in Grid Editor
  • Loading branch information
HelioGuilherme66 authored Sep 5, 2024
2 parents dd8406a + 1441a43 commit 1c8a817
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.1, but RIDE is known to work w

`pip install -U robotframework-ride`

(3.8 <= python <= 3.12) Install current development version (**2.1dev75**) with:
(3.8 <= python <= 3.12) Install current development version (**2.1dev76**) 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 @@ -328,7 +328,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">
python -m robotide.postinstall -install
</pre>
<p>RIDE {VERSION} was released on 04/September/2024.</p>
<p>RIDE {VERSION} was released on 06/September/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/editors.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ def __init__(self, plugin, parent, controller, tree):
self._reset_last_show_tooltip()
self._populate()
self.plugin.subscribe(self._settings_changed, RideItemSettingsChanged)
self.SetupScrolling()

@abstractmethod
def _populate(self):
Expand Down Expand Up @@ -315,6 +314,7 @@ def __init__(self, *args):
_RobotTableEditor.__init__(self, *args)
self.plugin.subscribe(
self._update_source_and_name, RideFileNameChanged)
self.SetupScrolling()

def _update_source(self, message=None):
_ = message
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.1dev75'
VERSION = 'v2.1dev76'

0 comments on commit 1c8a817

Please sign in to comment.