Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Plasma Desktop
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
37
Merge Requests
37
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
Plasma Desktop
Commits
4dfaffd1
Commit
4dfaffd1
authored
Feb 19, 2020
by
Benjamin Port
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Plasma/5.18'
# Conflicts: # CMakeLists.txt # kcms/workspaceoptions/kcm_workspace.desktop
parents
ecb78500
ca9f0eeb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
6 deletions
+4
-6
desktoppackage/contents/configuration/AppletConfiguration.qml
...toppackage/contents/configuration/AppletConfiguration.qml
+1
-1
kcms/krdb/krdb.cpp
kcms/krdb/krdb.cpp
+2
-2
kcms/standard_actions/standard_actions.desktop
kcms/standard_actions/standard_actions.desktop
+0
-1
toolboxes/desktoptoolbox/contents/ui/ToolBoxButton.qml
toolboxes/desktoptoolbox/contents/ui/ToolBoxButton.qml
+1
-0
toolboxes/desktoptoolbox/contents/ui/ToolBoxRoot.qml
toolboxes/desktoptoolbox/contents/ui/ToolBoxRoot.qml
+0
-2
No files found.
desktoppackage/contents/configuration/AppletConfiguration.qml
View file @
4dfaffd1
...
...
@@ -164,7 +164,7 @@ Rectangle {
id
:
categoriesScroll
QtControls.ScrollBar.horizontal.policy
:
QtControls
.
ScrollBar
.
AlwaysOff
Layout.fillHeight
:
true
visible
:
(
configDialog
.
configModel
?
configDialog
.
configModel
.
count
:
0
)
+
globalConfigModel
.
count
>
1
visible
:
true
Layout.maximumWidth
:
units
.
gridUnit
*
7
Layout.preferredWidth
:
categories
.
implicitWidth
...
...
kcms/krdb/krdb.cpp
View file @
4dfaffd1
...
...
@@ -752,8 +752,8 @@ void runRdb( uint flags )
// Export the Xcursor theme & size settings
KConfigGroup
mousecfg
(
KSharedConfig
::
openConfig
(
QStringLiteral
(
"kcminputrc"
)
),
"Mouse"
);
QString
theme
=
mousecfg
.
readEntry
(
"cursorTheme"
,
QString
());
QString
size
=
mousecfg
.
readEntry
(
"cursorSize"
,
QString
());
QString
theme
=
mousecfg
.
readEntry
(
"cursorTheme"
,
QString
(
"breeze_cursors"
));
QString
size
=
mousecfg
.
readEntry
(
"cursorSize"
,
QString
(
"0"
));
QString
contents
;
if
(
!
theme
.
isNull
())
...
...
kcms/standard_actions/standard_actions.desktop
View file @
4dfaffd1
...
...
@@ -6,7 +6,6 @@ X-KDE-ServiceTypes=KCModule
X-DocPath=kcontrol/keys/index.html
X-KDE-Library=kcm_standard_actions
X-KDE-Init-Symbol=standard_actions
X-KDE-ParentApp=kcontrol
X-KDE-System-Settings-Parent-Category=shortcuts
...
...
toolboxes/desktoptoolbox/contents/ui/ToolBoxButton.qml
View file @
4dfaffd1
...
...
@@ -44,6 +44,7 @@ Item {
}
transformOrigin
:
Item
.
Center
opacity
:
plasmoid
.
editMode
visible
:
plasmoid
.
editMode
Behavior
on
opacity
{
OpacityAnimator
{
duration
:
units
.
longDuration
...
...
toolboxes/desktoptoolbox/contents/ui/ToolBoxRoot.qml
View file @
4dfaffd1
...
...
@@ -54,10 +54,8 @@ Item {
ToolBoxButton
{
id
:
toolBoxButton
visible
:
false
Component.onCompleted
:
{
placeToolBox
(
plasmoid
.
configuration
.
ToolBoxButtonState
);
toolBoxButton
.
visible
=
true
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment