Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
48593a23
Commit
48593a23
authored
Feb 18, 2013
by
Sebastian Eichelbaum
Browse files
[CHANGE] a number of labels of 0 does not make sense. Fixed.
parent
0089cde3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/modules/colormapper/WMColormapper.cpp
src/modules/colormapper/WMColormapper.cpp
+2
-2
No files found.
src/modules/colormapper/WMColormapper.cpp
View file @
48593a23
...
...
@@ -96,8 +96,8 @@ void WMColormapper::properties()
m_colorBarBorder
=
colorBarGroup
->
addProperty
(
"Show Border"
,
"If true, a thin white border is shown around the colorbar."
,
true
);
m_colorBarName
=
colorBarGroup
->
addProperty
(
"Show Name"
,
"If true, a shortened version of the data name is shown."
,
true
);
m_colorBarLabels
=
colorBarGroup
->
addProperty
(
"Colorbar Labels"
,
"This defines the number of labels."
,
10
);
m_colorBarLabels
->
setMin
(
0
);
m_colorBarLabels
->
setMax
(
55
);
m_colorBarLabels
->
setMin
(
2
);
m_colorBarLabels
->
setMax
(
100
);
WModule
::
properties
();
}
...
...
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