Skip to content

Fix cell positioning of keywords doc in Grid Editor #2772

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 &lt;= 3.12) Install current development version (**2.1dev37**) with:
(3.8 < python &lt;= 3.12) Install current development version (**2.1dev38**) 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 @@ -293,7 +293,7 @@ def set_content(self, html_win, content):
<pre class="literal-block">
python -m robotide.postinstall -install
</pre>
<p>RIDE {VERSION} was released on 15/May/2024.</p>
<p>RIDE {VERSION} was released on 17/May/2024.</p>
<!-- <br/>
<h3>May The Fourth Be With You!</h3>
-->
Expand Down
1 change: 1 addition & 0 deletions src/robotide/editor/gridbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def _get_all_content(self):
def cell_under_cursor(self):
x, y = self.ScreenToClient(wx.GetMousePosition())
x -= self.RowLabelSize
y -= self.GetColLabelSize()
return self.XYToCell(*self.CalcUnscrolledPosition(x, y))

def select(self, row, column):
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#
# Automatically generated by `tasks.py`.
VERSION = 'v2.1dev37'
VERSION = 'v2.1dev38'
Loading