diff options
| author | Duong Do Minh Chau <[email protected]> | 2020-11-12 16:38:44 +0700 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2020-12-28 20:18:31 +0000 |
| commit | a512176b4bdbf0f0471a9b9089f4a936c14e2732 (patch) | |
| tree | 51f1ecf98d29b9994af950d9ca2fb0085f29e337 /src/settings/dolphin_contextmenusettings.kcfg | |
| parent | b339ac1b5f22efb57619c738eb39268c3e00948d (diff) | |
Add options to hide some context menu entries
This commit add options to hide the following context menu entries:
- Add to Places
- Copy Location
- Duplicate Here
- Open in New Tab and Open in New Tabs
- Open in New Window
- Sort By
- View Mode
The Services settings page is renamed to Context Menu
ShowCopyMoveMenu option is moved from GeneralSettings to ContextMenuSettings
BUG: 314594
Diffstat (limited to 'src/settings/dolphin_contextmenusettings.kcfg')
| -rw-r--r-- | src/settings/dolphin_contextmenusettings.kcfg | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/settings/dolphin_contextmenusettings.kcfg b/src/settings/dolphin_contextmenusettings.kcfg new file mode 100644 index 000000000..9e7056551 --- /dev/null +++ b/src/settings/dolphin_contextmenusettings.kcfg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd"> +<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 + http://www.kde.org/standards/kcfg/1.0/kcfg.xsd"> + <kcfgfile name="dolphinrc"/> + <group name="ContextMenu"> + <entry name="ShowCopyMoveMenu" type="Bool"> + <label>Show 'Copy To' and 'Move To' commands in context menu</label> + <default>false</default> + </entry> + <entry name="ShowAddToPlaces" type="Bool"> + <label>Show 'Add to Places' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowSortBy" type="Bool"> + <label>Show 'Sort By' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowViewMode" type="Bool"> + <label>Show 'View Mode' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowOpenInNewTab" type="Bool"> + <label>Show 'Open in New Tab' and 'Open in New Tabs' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowOpenInNewWindow" type="Bool"> + <label>Show 'Open in New Window' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowCopyLocation" type="Bool"> + <label>Show 'Copy Location' in context menu.</label> + <default>true</default> + </entry> + <entry name="ShowDuplicateHere" type="Bool"> + <label>Show 'Duplicate Here' in context menu.</label> + <default>true</default> + </entry> + </group> +</kcfg> |
