From 1ffe7ca117b43e5a5f82f303e2f76c44faf4ee1f Mon Sep 17 00:00:00 2001 From: Pedro Pinto Silva Date: Mon, 27 Nov 2023 17:13:09 +0100 Subject: [PATCH] Do not hide speadsheet statusbar by default Status bar is crucial for productivity tool (specially when it comes to office suites and in specific spreadsheets). Context, this is a regression from: - https://github.com/nextcloud/richdocuments/pull/2059 - fabed162ea07ac27c031f288f0fab6f027badf78 Even if, and as noted in https://github.com/nextcloud/richdocuments/pull/2053#issuecomment-1044371555, 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 --- src/helpers/coolParameters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/coolParameters.js b/src/helpers/coolParameters.js index 0569f29f9b..89545975f3 100644 --- a/src/helpers/coolParameters.js +++ b/src/helpers/coolParameters.js @@ -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 + ';'