Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
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
sdkjs
Commits
f3044bd2
Commit
f3044bd2
authored
Aug 15, 2017
by
GoshaZotov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 35592
parent
1898b81e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+13
-2
No files found.
cell/view/WorksheetView.js
View file @
f3044bd2
...
...
@@ -12561,6 +12561,12 @@
var widthButtonPx = 17;
var heightButtonPx = 17;
if (AscBrowser.isRetina)
{
widthButtonPx = AscCommon.AscBrowser.convertToRetinaValue(widthButtonPx, true);
heightButtonPx = AscCommon.AscBrowser.convertToRetinaValue(heightButtonPx, true);
}
var widthBorder = 1;
var scaleIndex = 1;
...
...
@@ -12613,7 +12619,7 @@
var x = Math.round(r.x);
var y = Math.round(r.y);
var
heightArrow1
=
Math
.
round
(
heightArrow
*
scaleFactor
-
1
);
var heightArrow1 = Math.round(heightArrow * scaleFactor
* scaleIndex
- 1);
var height = Math.round(3 * scaleIndex * scaleFactor);
var diffY = 0;
for(var i = 0; i < height; i++)
...
...
@@ -12653,7 +12659,7 @@
x = Math.round((x) / width_1px) * width_1px;
y = Math.round((y) / height_1px) * height_1px;
var heightLine = Math.round(height);
var
heightCleanLine
=
heightLine
-
4
+
2
;
var heightCleanLine = heightLine - 2;
ctx.beginPath();
...
...
@@ -12775,6 +12781,11 @@
height = rowHeight;
}
if(AscBrowser.isRetina)
{
scaleIndex *= 2;
}
_drawButton(x1 + diffX, y1 + diffY);
};
...
...
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