Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
33bad0b4
Commit
33bad0b4
authored
Feb 24, 2020
by
Piotr Gawron
Browse files
when no colors are used in gene then transcription factor doesn't use colors as well
parent
f238fef8
Pipeline
#21415
failed with stage
in 3 minutes and 8 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
33bad0b4
...
...
@@ -12,6 +12,8 @@ minerva (14.0.9) stable; urgency=medium
name
of
a
file
is
used
as
overlay
name
(#
1065
)
*
Bug
fix
:
uploading
empty
data
overlay
resulted
in
an
error
(#
1123
)
*
Bug
fix
:
exporting
map
with
glyphs
crashed
(#
1130
)
*
Bug
fix
:
transcription
factor
on
black
&
white
gene
are
drawn
in
black
(#
1132
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Mon
,
3
Feb
2020
15
:
00
:
00
+
0200
...
...
converter-graphics/src/main/java/lcsb/mapviewer/converter/graphics/bioEntity/element/species/SpeciesConverter.java
View file @
33bad0b4
...
...
@@ -615,7 +615,7 @@ public abstract class SpeciesConverter<T extends Species> extends ElementConvert
protected
void
drawTranscriptionSite
(
final
TranscriptionSite
transcriptionSite
,
final
Graphics2D
graphics
)
{
Color
color
=
graphics
.
getColor
();
if
(
transcriptionSite
.
getActive
())
{
if
(
transcriptionSite
.
getActive
()
&&
!
transcriptionSite
.
getSpecies
().
getColor
().
equals
(
Color
.
WHITE
)
)
{
color
=
Color
.
RED
;
}
else
{
color
=
Color
.
BLACK
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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