Bug 368421 - With menubar hidden, the "Control" toolbar button is unalterable, unlike all other toolbar buttons
Summary: With menubar hidden, the "Control" toolbar button is unalterable, unlike all ...
Status: RESOLVED FIXED
Alias: None
Product: dolphin
Classification: Applications
Component: general (show other bugs)
Version: 16.12.2
Platform: Arch Linux Linux
: NOR normal
Target Milestone: ---
Assignee: Dolphin Bug Assignee
URL:
Keywords:
: 427437 (view as bug list)
Depends on:
Blocks:
 
Reported: 2016-09-07 20:01 UTC by andydecleyre
Modified: 2021-05-03 15:45 UTC (History)
7 users (show)

See Also:
Latest Commit:
Version Fixed In: 21.08


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description andydecleyre 2016-09-07 20:01:28 UTC
The version is 16.08.0.

With the menubar hidden, a button is added to the toolbar (without consent). Unlike every other toolbar button, this button cannot be removed, it cannot hide its text, it cannot use custom text, it cannot be re-ordered, it cannot use a custom icon, and it cannot be added when the menubar is visible.

Reproducible: Always

Steps to Reproduce:
1. Hide menubar
2. Find a new toolbar button
3. Try to change it in ways that every other toolbar button can be changed

Actual Results:  
Unlike every other toolbar button, this button cannot be removed, it cannot hide its text, it cannot use custom text, it cannot be re-ordered, it cannot use a custom icon, and it cannot be added when the menubar is visible.

Expected Results:  
Like every other toolbar button, this button can be removed, it can hide its text, it can use custom text, it can be re-ordered, it can use a custom icon, and it can be added when the menubar is visible.
Comment 1 Nate Graham 2017-08-18 15:20:07 UTC
This is intentional. If you could disable, remove, or alter the control button, there would be no way of accessing its functionality or restoring it to default settings. People could get themselves trapped with Dolphin in an unalterable state.
Comment 2 andydecleyre 2017-08-18 15:29:22 UTC
(In reply to Nate Graham from comment #1)

> . . . there would be no way of accessing its functionality or restoring it to default settings. People could get themselves trapped with Dolphin in an unalterable state.

I think this is completely false.

If the menubar is still available within the window decoration or using a global menubar plasmoid, you can always accessing/restore via that menubar (Settings > Configure Toolbars).

If the menubar is not available, the control button could always be added/removed from the toolbar by right-clicking the toolbar.

If the rationale for this limitation is based only on a false understanding, please reopen.
Comment 3 andydecleyre 2017-08-18 15:31:24 UTC
Furthermore, your explanation did not touch at all on the ordering limitation, or the text-visibility limitation, or the text-customization limitation, or the icon limitation, or the visible-menubar limitation.
Comment 4 Nate Graham 2017-08-18 15:44:31 UTC
Thanks for the comments, Andy. I'm not a Dolphin maintainer--only a bug screener--but I have to imagine that the button is unalterable to prevent users from accidentally hiding or defacing it, and then not easily being able to get back the button or the menubar.

You are right, though, about possibly being able to access the menu through a global menu plasmoid, or an application menu window button. And it's true that if the button was just a standard button, you could manipulate it via the normal means, and get it back that way if you accidentally removed it.

Re-opening; thanks for helping me understand your perspective.
Comment 5 Kai Uwe Broulik 2017-08-23 16:07:41 UTC
The tool button is quite a hack and added manually to the tool bar and not managed by KXmlGui (which provides all the customization options). That's why you cannot alter it at this point.
Comment 6 Bug Janitor Service 2020-10-05 16:38:28 UTC
A possibly relevant merge request was started @ https://invent.kde.org/system/dolphin/-/merge_requests/71
Comment 7 Elvis Angelaccio 2020-10-08 20:50:01 UTC
*** Bug 427437 has been marked as a duplicate of this bug. ***
Comment 8 Felix Ernst 2021-03-30 10:07:49 UTC
Git commit 6610d74b9c44437a3ed37c18ad205eb5d2dfd907 by Felix Ernst.
Committed on 30/03/2021 at 10:07.
Pushed by felixernst into branch 'master'.

Introduce KHamburgermenu

This commit introduces the hamburger menu, which is a general menu button,
to frameworks. It substitutes the menu bar meaning that it will act non-
existent when the menu bar is visible. When there is no menu bar or it is
hidden, the KHamburgerMenu will take on all of its responsibilities.

The hamburger menu is supposed to only feature actions which are not
already visible for the user in other parts of the UI. It will try to do
so automatically but methods are available to make it aware of toolbars,
menus, etc.

When both the menu bar and toolbars are hidden, users might find
themselves in a situation they do not know how to recover from. To avoid
this, KHamburgerMenu is supposed to be added to context menus where it
will only be visible, when no other menu is available.

The menu also features a special sub-menu advertising actions which are
only available through the menu bar and would crowd the hamburger menu.

M  +4    -0    src/CMakeLists.txt
A  +410  -0    src/khamburgermenu.cpp     [License: LGPL(3+eV) LGPL(v3.0) LGPL(v2.1)]
A  +184  -0    src/khamburgermenu.h     [License: LGPL(3+eV) LGPL(v3.0) LGPL(v2.1)]
A  +163  -0    src/khamburgermenu_p.h     [License: LGPL(3+eV) LGPL(v3.0) LGPL(v2.1)]
A  +87   -0    src/khamburgermenuhelpers.cpp     [License: LGPL(3+eV) LGPL(v3.0) LGPL(v2.1)]
A  +133  -0    src/khamburgermenuhelpers.h     [License: LGPL(3+eV) LGPL(v3.0) LGPL(v2.1)]
M  +10   -0    src/kstandardaction.cpp
M  +14   -0    src/kstandardaction.h
M  +1    -0    src/kstandardaction_p.h

https://invent.kde.org/frameworks/kconfigwidgets/commit/6610d74b9c44437a3ed37c18ad205eb5d2dfd907
Comment 9 Felix Ernst 2021-05-01 10:51:26 UTC
I fixed this with https://invent.kde.org/system/dolphin/-/commit/a4be53fb997ea2f844f2ca4a590c073a50fcbbf6.

Nate removed my commit message by mistake so this wasn't closed automatically which probably made it so I wasn't mentioned in his blog either. It's fine who wants fame and fortune anyway. 🥲

Replace custom hamburger/control menu with KHamburgerMenu

Use the new KHamburgerMenu from KConfigWidgets instead of the
Dolphin-specific Control menu. This makes it so the position,
appearance, etc. of the hamburger button can be changed like
any other.

This was commited on Apr 29, 2021 3:22pm GMT+0200.
Comment 10 Felix Ernst 2021-05-01 17:16:30 UTC
I wish one could edit comments here. That reads way more passive aggressive than I intended. I was kidding.
Comment 11 Nate Graham 2021-05-03 15:45:13 UTC
My bad, sorry. :(