From 16a4471b733837b9152cea6a50cfdeb52410f6cb Mon Sep 17 00:00:00 2001 From: plata Date: Sat, 8 Jan 2022 13:21:53 +0000 Subject: [PATCH] mobile-config-prefs.js: fix titlebar for plamo (MR 23) Instead of moving tabs into the title bar, hide it completely on Plasma Mobile, now that the tabs are at the bottom. --- src/mobile-config-prefs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mobile-config-prefs.js b/src/mobile-config-prefs.js index fbdde0b..aba148e 100644 --- a/src/mobile-config-prefs.js +++ b/src/mobile-config-prefs.js @@ -11,8 +11,8 @@ pref('dom.w3c.touch_events.enabled', true); pref('apz.allow_zooming', true); pref('apz.allow_double_tap_zooming', true); -// Save vertical space by drawing directly in the titlebar -pref('browser.tabs.drawInTitlebar', true); +// Save vertical space by hiding the titlebar +pref('browser.tabs.inTitlebar', 1); // Disable search suggestions pref('browser.search.suggest.enabled', false);