Skip to content

Commit

Permalink
Make style sidebar non-experimental
Browse files Browse the repository at this point in the history
Signed-off-by: Szymon Kłos <[email protected]>
Change-Id: I5420ebec750110a6776cf4ba2421126da90e4367
  • Loading branch information
eszkadev committed Jan 29, 2025
1 parent 4005ad8 commit ea270f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions browser/src/control/Control.NotebookbarCalc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* L.Control.NotebookbarCalc - definition of notebookbar content in Calc
*/

/* global _ _UNO app */
/* global _ _UNO */
L.Control.NotebookbarCalc = L.Control.NotebookbarWriter.extend({

getTabs: function() {
Expand Down Expand Up @@ -2018,13 +2018,13 @@ L.Control.NotebookbarCalc = L.Control.NotebookbarWriter.extend({
'command': '.uno:ParagraphDialog',
'accessibility': { focusBack: true, combination: 'PD', de: null }
},
app.isExperimentalMode() ? {
{
'id': 'format-style-dialog',
'type': 'bigtoolitem',
'text': _('Style list'),
'command': '.uno:SidebarDeck.StyleListDeck',
'accessibility': { focusBack: false, combination: 'SD', de: null }
} : {},
},
{
'id': 'format-page-format-dialog',
'type': 'bigtoolitem',
Expand Down
6 changes: 3 additions & 3 deletions browser/src/control/Control.NotebookbarWriter.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* L.Control.NotebookbarWriter - definition of notebookbar content in Writer
*/

/* global _ _UNO app */
/* global _ _UNO */

var fileTabName = 'File';
var homeTabName = 'Home';
Expand Down Expand Up @@ -939,13 +939,13 @@ L.Control.NotebookbarWriter = L.Control.Notebookbar.extend({
'command': '.uno:ParagraphDialog',
'accessibility': { focusBack: false, combination: 'B', de: null }
},
app.isExperimentalMode() ? {
{
'id': 'format-style-dialog',
'type': 'bigtoolitem',
'text': _('Style list'),
'command': '.uno:SidebarDeck.StyleListDeck',
'accessibility': { focusBack: false, combination: 'SD', de: null }
} : {},
},
{
'id': 'format-FormatBulletsMenu',
'type': 'menubutton',
Expand Down

0 comments on commit ea270f6

Please sign in to comment.