Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
827c1ddc
Commit
827c1ddc
authored
Dec 18, 2019
by
Piotr Gawron
Browse files
if map has SHOW OVERVIEW, the legend/comment/clear were not displayed at all
parent
4d532026
Pipeline
#17953
failed with stage
in 12 minutes and 30 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
827c1ddc
...
...
@@ -3,6 +3,8 @@ minerva (14.0.6) stable; urgency=medium
provides
proper
error
message
(#
1046
)
*
Bug
fix
:
search
by
identifier
didn
't consider identifiers added by
annotators (#1047)
* Bug fix: if map has SHOW OVERVIEW, the legend/comment/clear were not
displayed at all (regresion 14.0.5, #1045)
-- Piotr Gawron <piotr.gawron@uni.lu> Wed, 18 Dec 2019 12:00:00 +0200
...
...
frontend-js/src/main/css/global.css
View file @
827c1ddc
...
...
@@ -620,6 +620,10 @@ Plugin tabs
float
:
left
;
}
.minerva-overview-div
{
display
:
inline
;
}
.minerva-overview-button
{
color
:
#FFFFFF
;
height
:
36px
;
...
...
frontend-js/src/main/js/gui/topMenu/TopMenu.js
View file @
827c1ddc
...
...
@@ -89,7 +89,7 @@ TopMenu.prototype._createGui = function () {
style
:
"
display:none;
"
}));
var
showOverviewDiv
=
Functions
.
createElement
({
type
:
"
div
"
});
var
showOverviewDiv
=
Functions
.
createElement
({
type
:
"
div
"
,
className
:
"
minerva-overview-div
"
});
self
.
getElement
().
appendChild
(
showOverviewDiv
);
var
showOverviewButton
=
Functions
.
createElement
({
...
...
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