Skip to content

Commit

Permalink
Do not hide speadsheet statusbar by default
Browse files Browse the repository at this point in the history
Status bar is crucial for productivity tool (specially when it comes
to office suites and in specific spreadsheets).

Context, this is a regression from:
- #2059
- fabed16

Even if,  and as noted in
#2053 (comment),
the status bar was still being hidden for safari I think it's best to
don't break the spreadsheet experience for every browser. On top of
that I think the richdocuments frame suffer some changes and that
safari issue might not be present anymore.

Signed-off-by: Pedro Pinto Silva <[email protected]>
  • Loading branch information
pedropintosilva authored and backportbot-nextcloud[bot] committed Nov 28, 2023
1 parent 819e519 commit 1e50b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/coolParameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const getUIDefaults = () => {
let uiDefaults = 'TextRuler=' + textRuler + ';'
uiDefaults += 'TextSidebar=' + sidebar + ';TextStatusbar=' + statusBar + ';'
uiDefaults += 'PresentationSidebar=' + sidebar + ';PresentationStatusbar=' + statusBar + ';'
uiDefaults += 'SpreadsheetSidebar=' + sidebar + ';SpreadsheetStatusbar=' + statusBar + ';'
uiDefaults += 'SpreadsheetSidebar=' + sidebar + ';SpreadsheetStatusbar=true;'
uiDefaults += 'UIMode=' + uiMode + ';'
uiDefaults += 'UITheme=' + uiTheme + ';'
uiDefaults += 'SaveAsMode=' + saveAsMode + ';'
Expand Down

0 comments on commit 1e50b43

Please sign in to comment.