Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/refactor shortcut tests #3913

Merged
merged 29 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ef12297
[de] Start to refactor shortcut tests
KirillovIlya Jun 21, 2023
d6a15e1
[de] Refactor tests
KirillovIlya Jun 21, 2023
8852ec0
Add name of the test to the console
KirillovIlya Jun 21, 2023
5b27e52
Merge branch 'develop' of https://github.com/ONLYOFFICE/sdkjs into fi…
Jul 31, 2023
3a4c39e
Refactor main shortcuts
Aug 9, 2023
f37d518
Refactor document shortcuts
Aug 10, 2023
6f2c8e5
Merge branch 'release/v7.5.0' of https://github.com/ONLYOFFICE/sdkjs …
Aug 10, 2023
e2c6664
Add description for tests
Coolcooo Aug 11, 2023
da70ca5
Fix tests for document editor
Coolcooo Aug 11, 2023
a9e89ff
Refactor checkSendingEvent function
Coolcooo Sep 15, 2023
6ad29f8
[pe]Refactor shortcut tests
Coolcooo Sep 21, 2023
8522220
[pe]Fix passing tests
Coolcooo Sep 21, 2023
0984ffe
Return chart after adding on worksheet
Coolcooo Oct 2, 2023
6190e16
[se]Remove unused shortcuts
Coolcooo Oct 2, 2023
381780f
[pe]Remove unused methods
Coolcooo Oct 2, 2023
575ea57
[de]Remove unused code
Coolcooo Oct 2, 2023
352cd6b
[se]Refactor shortcut tests
Coolcooo Oct 2, 2023
763efe3
Merge branch 'release/v7.5.0' of https://github.com/ONLYOFFICE/sdkjs …
Coolcooo Oct 2, 2023
dcf0912
[pe] Add moving to specific slide tests
Coolcooo Oct 3, 2023
9e8aa66
Add macOs text movement tests
Coolcooo Oct 3, 2023
bb00ab4
[de] Remove unusual code
Coolcooo Oct 3, 2023
adea8e3
[se] Add show drop down tests
Coolcooo Oct 3, 2023
296044c
[se] Add tests for firefox keys
Coolcooo Oct 3, 2023
d9d6aad
Merge branch 'release/v7.5.0' of https://github.com/ONLYOFFICE/sdkjs …
Coolcooo Oct 3, 2023
90ca2ce
[de] Add more tests for movement between headers/footer
Coolcooo Oct 3, 2023
8ca7613
[se] Remove "add space" test
Coolcooo Oct 13, 2023
bb143cc
Merge remote-tracking branch 'remotes/origin/release/v7.5.0' into fix…
SergeyLuzyanin Oct 16, 2023
4f9ea35
Merge branch 'develop' of https://github.com/ONLYOFFICE/sdkjs into fi…
Coolcooo Oct 19, 2023
1b46beb
Fix typo
Coolcooo Oct 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cell/view/DrawingObjectsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ DrawingObjectsController.prototype.addChartDrawingObject = function(options)
this.startRecalculate();
this.drawingObjects.sendGraphicObjectProps();
}
return chart;
};

DrawingObjectsController.prototype.isPointInDrawingObjects = function(x, y, e)
Expand Down
8 changes: 2 additions & 6 deletions cell/view/EventsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -846,14 +846,10 @@

case 120: // F9
var type;
if (ctrlKey && event.altKey && shiftKey) {
type = Asc.c_oAscCalculateType.All;
} else if (ctrlKey && event.altKey) {
type = Asc.c_oAscCalculateType.Workbook;
} else if (shiftKey) {
if (shiftKey) {
type = Asc.c_oAscCalculateType.ActiveSheet;
} else {
type = Asc.c_oAscCalculateType.WorkbookOnlyChanged;
type = Asc.c_oAscCalculateType.All;
}
t.handlers.trigger("calculate", type);
return result;
Expand Down
2 changes: 1 addition & 1 deletion slide/Editor/Format/Presentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -11258,7 +11258,7 @@ CPresentation.prototype.moveSlidesPrevPos = function () {
if (can_move) {
History.Create_NewPoint(AscDFH.historydescription_Presentation_MoveSlidesPrevPos);
let aNewSelected = [];
for (i = first_index; i > -1; --i) {
for (i = first_index; i < _selected_array.length; ++i) {
let nOldIdx = _selected_array[i];
let nNewIdx = nOldIdx - 1;
this.moveSlides([nOldIdx], nNewIdx);
Expand Down
Loading
Loading