Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
c313a2e1
Commit
c313a2e1
authored
Jul 04, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PE] Fix Bug 35231.
parent
a3543f95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
apps/presentationeditor/main/app/view/Statusbar.js
apps/presentationeditor/main/app/view/Statusbar.js
+3
-2
No files found.
apps/presentationeditor/main/app/view/Statusbar.js
View file @
c313a2e1
...
...
@@ -496,9 +496,10 @@ define([
this
.
_state
.
no_paragraph
=
true
;
var
i
=
-
1
;
while
(
++
i
<
selectedObjects
.
length
)
{
if
(
selectedObjects
[
i
].
get_ObjectType
()
==
Asc
.
c_oAscTypeSelectElement
.
Paragraph
)
{
var
type
=
selectedObjects
[
i
].
get_ObjectType
();
if
(
type
==
Asc
.
c_oAscTypeSelectElement
.
Paragraph
||
type
==
Asc
.
c_oAscTypeSelectElement
.
Shape
||
type
==
Asc
.
c_oAscTypeSelectElement
.
Chart
||
type
==
Asc
.
c_oAscTypeSelectElement
.
Table
)
{
this
.
_state
.
no_paragraph
=
selectedObjects
[
i
].
get_ObjectValue
().
get_Locked
();
break
;
if
(
this
.
_state
.
no_paragraph
)
break
;
// break if one of the objects is locked
}
}
this
.
_state
.
no_paragraph
=
this
.
_state
.
no_paragraph
||
this
.
langMenu
.
items
.
length
<
1
;
...
...
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