Skip to content

Commit

Permalink
Merge branch hotfix/v7.5.1 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
papacarlo committed Nov 8, 2023
2 parents dea6fbf + 06417b3 commit 5238ddb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
9 changes: 6 additions & 3 deletions apps/common/main/lib/controller/Desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,9 +367,9 @@ define([
}
});
}

_checkHelpAvailable.call(this);
}

_checkHelpAvailable.call(this);
}

const _onHidePreloader = function (mode) {
Expand Down Expand Up @@ -615,6 +615,9 @@ define([
isFeatureAvailable: function (feature) {
return !!native && !!native[feature];
},
isWinXp: function () {
return nativevars && nativevars.os === 'winxp';
},
call: function (name) {
if ( native[name] ) {
let args = [].slice.call(arguments, 1);
Expand Down Expand Up @@ -674,7 +677,7 @@ define([

return false;
},
};
};
};

!Common.Controllers && (Common.Controllers = {});
Expand Down
3 changes: 2 additions & 1 deletion apps/documenteditor/main/resources/less/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@
border-radius: 3px;
overflow: hidden;
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.2);
.ie & {
.ie &,
.winxp & {
overflow: visible;
}
}
Expand Down
3 changes: 2 additions & 1 deletion apps/presentationeditor/main/resources/less/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@
border-radius: 3px;
overflow: hidden;
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.2);
.ie & {
.ie &,
.winxp & {
overflow: visible;
}
}
Expand Down
6 changes: 3 additions & 3 deletions apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,19 +476,19 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template',
{
caption : this.textInsideBorders,
iconCls : 'menu__icon btn-border-inside',
icls : 'btn-border-center',
icls : 'btn-border-inside',
borderId : 'inner'
},
{
caption : this.textCenterBorders,
iconCls : 'menu__icon btn-border-insidevert',
icls : 'btn-border-vmiddle',
icls : 'btn-border-insidevert',
borderId : Asc.c_oAscBorderOptions.InnerV
},
{
caption : this.textMiddleBorders,
iconCls : 'menu__icon btn-border-insidehor',
icls : 'btn-border-hmiddle',
icls : 'btn-border-insidehor',
borderId : Asc.c_oAscBorderOptions.InnerH
},
{
Expand Down
3 changes: 2 additions & 1 deletion apps/spreadsheeteditor/main/resources/less/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
&.has-open-menu {
z-index: @zindex-navbar + 1;
}
.ie & {
.ie &,
.winxp & {
overflow: visible;
}
}
Expand Down

0 comments on commit 5238ddb

Please sign in to comment.