Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Instrument Control
NomadGUI
Commits
26b6939d
Commit
26b6939d
authored
Mar 03, 2022
by
helene ortiz
Browse files
* Bug with combo boxes in hardware tab (background is transparent) fixed
by forcing background color.
parent
444c1bb0
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
26b6939d
...
...
@@ -3,6 +3,7 @@
* Make some graphical modifications following migration to GTK3.
* Increases commandbox images size following migration to GTK3.
* Attribute width added to selector widget.
* Bug with combo boxes in hardware tab (background is transparent) fixed by forcing background color.
4.0.133 02/12/2021
...
...
VMArguments.txt
View file @
26b6939d
-Djava.library.path=lib/gtk:lib/common/calculator
-Djava.util.logging.config.file=conf/client/logging.properties
-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB
-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton
# DEBIAN
-Djava.library.path=lib64/common/calculator:/usr/lib:/usr/lib/x86_64-linux-gnu/jni
-Djava.util.logging.config.file=conf/client/logging.properties
...
...
pom.xml
View file @
26b6939d
...
...
@@ -142,7 +142,7 @@
<dependency>
<groupId>
fr.ill.ics
</groupId>
<artifactId>
nomadcommandsystem
</artifactId>
<version>
4.0.5
3-SNAPSHOT
</version>
<version>
4.0.5
2
</version>
</dependency>
<dependency>
<!-- For CollectionUtils -->
<groupId>
org.apache.commons
</groupId>
...
...
src/main/java/fr/ill/ics/client/view/factory/swt/SWTWidgetFactory.java
View file @
26b6939d
...
...
@@ -1120,7 +1120,8 @@ public class SWTWidgetFactory extends WidgetFactory {
public
Combo
createCombo
(
Composite
parentComposite
,
int
style
,
int
fontSize
,
String
fontStyle
)
{
Combo
combo
=
new
Combo
(
parentComposite
,
style
);
combo
.
setBackground
(
SWTColorFactory
.
getBackgroundColor
());
// Waiting for bug # 93472
combo
.
addListener
(
SWT
.
MouseWheel
,
new
Listener
()
{
public
void
handleEvent
(
Event
event
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment