Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
a87f15e3
Commit
a87f15e3
authored
Feb 21, 2019
by
Piotr Gawron
Browse files
custom semantic zooming contains multiple overlays checkbox was disabled
parent
4df9708d
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
a87f15e3
minerva
(
12.2.0
~
beta
.2
)
unstable
;
urgency
=
medium
*
Bug
fix
:
custom
semantic
zooming
contains
multiple
overlays
checkbox
was
disabled
(#
715
)
*
Bug
fix
:
export
to
svg
contains
viewBox
info
(#
716
)
*
Bug
fix
:
import
from
sbml
with
layout
could
crash
when
two
elements
occupied
the
exact
same
position
(#
717
)
...
...
frontend-js/src/main/js/gui/admin/AddProjectDialog.js
View file @
a87f15e3
...
...
@@ -293,15 +293,6 @@ AddProjectDialog.prototype.createGeneralTabContent = function () {
help
:
"
Check this checkbox to display each semantic zoom level in the General Overlays
"
}));
$
(
"
[name='project-semantic-zooming']
"
,
table
).
change
(
function
()
{
var
disable
=
!
$
(
"
[name='project-semantic-zooming']
"
,
table
).
is
(
"
:checked
"
);
$
(
"
[name='project-semantic-zooming-contains-multiple-overlays']
"
,
table
).
prop
(
"
disabled
"
,
disable
);
if
(
disable
)
{
$
(
"
[name='project-semantic-zooming-contains-multiple-overlays']
"
,
table
).
prop
(
"
checked
"
,
false
);
}
});
$
(
"
[name='project-semantic-zooming-contains-multiple-overlays']
"
,
table
).
prop
(
"
disabled
"
,
!
$
(
"
[name='project-semantic-zooming']
"
,
table
).
is
(
"
:checked
"
));
var
saveProjectButton
=
Functions
.
createElement
({
type
:
"
button
"
,
name
:
"
saveProject
"
,
...
...
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