Skip to content

Commit 257c699

Browse files
Fix missing text colorization in suites and tests settings in Grid Editor
1 parent fcc2506 commit 257c699

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.adoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ All notable changes to this project will be documented in this file.
66
The format is based on http://keepachangelog.com/en/1.0.0/[Keep a Changelog]
77
and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioning].
88

9-
// == https://github.com/robotframework/RIDE[Unreleased]
9+
== https://github.com/robotframework/RIDE[Unreleased]
10+
11+
=== Fixed
12+
- Fixed missing text colorization in suites and test settings on Grid Editor.
1013

1114
== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.1.5.2.rst[2.1.5.2] - 2025-07-30
1215

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Likewise, the current version of wxPython, is 4.2.3, but RIDE is known to work w
4444

4545
`pip install -U robotframework-ride`
4646

47-
(3.8 <= python <= 3.14) Install current development version (**2.1.5.2**) with:
47+
(3.8 <= python <= 3.14) Install current development version (**2.2dev40**) with:
4848

4949
`pip install -U https://github.com/robotframework/RIDE/archive/develop.zip`
5050

src/robotide/application/releasenotes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ def set_content(self, html_win, content):
175175
</ul>
176176
<p><strong>New Features and Fixes Highlights</strong></p>
177177
<ul class="simple">
178+
<li>Fixed missing text colorization in suites and test settings on Grid Editor.</li>
178179
<li>Restored init and main scripts and texteditor, because some changes in Grid Editor were not being saved in Text
179180
Editor and would be lost.</li>
180181
<li>Fix faulty cell editor in settings of Grid Editor which would prevent to change to Text Editor and Run tabs.</li>
@@ -240,7 +241,7 @@ def set_content(self, html_win, content):
240241
<pre class="literal-block">python -m robotide.postinstall -install</pre>
241242
<p>or</p>
242243
<pre class="literal-block">ride_postinstall.py -install</pre>
243-
<p>RIDE {VERSION} was released on 30/July/2025.</p>
244+
<p>RIDE {VERSION} was released on 14/August/2025.</p>
244245
<!-- <br/>
245246
<h3>May The Fourth Be With You!</h3>
246247
<h3>Celebrate the bank holiday, 10th June, Day of Portugal, Portuguese Communities and Camões!!</h3>

src/robotide/editor/settingeditors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ def __init__(self, parent):
299299
self.SetOwnForegroundColour(Colour(7, 0, 70))
300300
"""
301301
self.color_secondary_background = parent.color_secondary_background
302+
self.color_secondary_foreground = parent.color_secondary_foreground
302303
self.SetBackgroundColour(Colour(self.color_secondary_background))
304+
self.SetForegroundColour(Colour(self.color_secondary_foreground))
303305
self.SetEditable(False)
304306
self._colour_provider = ColorizationSettings(
305307
parent.plugin.global_settings['Grid'])

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616
# Automatically generated by `tasks.py`.
1717

18-
VERSION = 'v2.1.5.2'
18+
VERSION = 'v2.2dev40'

0 commit comments

Comments
 (0)