Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
svarog2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Redmine
Redmine
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Brain
svarog2
Commits
f14f3c9c
Commit
f14f3c9c
authored
Sep 10, 2019
by
Marian Dovgialo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#46032 changed Weblaf version to animate indeterminate progressbars
parent
d77f3875
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
pom.xml
pom.xml
+1
-0
pom.xml
svarog/pom.xml
+5
-6
SignalPlotCorner.java
...n/java/org/signalml/app/view/signal/SignalPlotCorner.java
+3
-0
SignalPlotRowHeader.java
...ava/org/signalml/app/view/signal/SignalPlotRowHeader.java
+1
-1
No files found.
pom.xml
View file @
f14f3c9c
...
...
@@ -54,6 +54,7 @@
<url>
http://repo.maven.apache.org/maven2
</url>
</repository>
<repository>
<id>
gettext-commons
</id>
<name>
gettext-commons
</name>
...
...
svarog/pom.xml
View file @
f14f3c9c
...
...
@@ -566,12 +566,11 @@
<artifactId>
raven-log4j
</artifactId>
<version>
7.8.0
</version>
</dependency>
<dependency>
<groupId>
de.sciss
</groupId>
<artifactId>
weblaf
</artifactId>
<version>
2.1.4
</version>
<type>
pom
</type>
</dependency>
<dependency>
<groupId>
com.weblookandfeel
</groupId>
<artifactId>
weblaf-ui
</artifactId>
<version>
1.2.8
</version>
</dependency>
<!-- dependencies below are specified in util/maven/pom.xml -->
<dependency>
...
...
svarog/src/main/java/org/signalml/app/view/signal/SignalPlotCorner.java
View file @
f14f3c9c
...
...
@@ -4,7 +4,9 @@
package
org
.
signalml
.
app
.
view
.
signal
;
import
java.awt.Component
;
import
java.awt.Dimension
;
import
java.awt.Color
;
import
javax.swing.JPanel
;
import
javax.swing.border.EmptyBorder
;
...
...
@@ -24,6 +26,7 @@
public
SignalPlotCorner
(
SignalPlot
plot
)
{
super
();
setBorder
(
new
EmptyBorder
(
3
,
3
,
3
,
3
));
setBackground
(
new
Color
(
237
,
237
,
237
));
this
.
plot
=
plot
;
}
...
...
svarog/src/main/java/org/signalml/app/view/signal/SignalPlotRowHeader.java
View file @
f14f3c9c
...
...
@@ -237,7 +237,7 @@ protected void paintComponent(Graphics gOrig) {
Dimension
size
=
getSize
();
Rectangle
clip
=
g
.
getClipBounds
();
g
.
setColor
(
getBackground
(
));
g
.
setColor
(
new
Color
(
237
,
237
,
237
));
g
.
fillRect
(
clip
.
x
,
clip
.
y
,
clip
.
width
,
clip
.
height
);
size
.
width
-=
SignalPlot
.
SCALE_TO_SIGNAL_GAP
;
...
...
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