Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
20dce6e8
Commit
20dce6e8
authored
Feb 14, 2022
by
Ingo Klöcker
Browse files
Remove LinksAccessibleByMouse flag from labels not showing links
parent
a6500b0b
Pipeline
#137168
passed with stage
in 3 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/dialogs/certificatedetailswidget.cpp
View file @
20dce6e8
...
...
@@ -192,7 +192,7 @@ private:
gridLayout
->
addWidget
(
validFromLbl
,
row
,
0
,
1
,
1
);
validFrom
=
new
QLabel
(
groupBox
);
validFrom
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
validFrom
->
setTextInteractionFlags
(
Qt
::
TextSelectableByMouse
);
gridLayout
->
addWidget
(
validFrom
,
row
,
1
,
1
,
1
);
...
...
@@ -207,7 +207,7 @@ private:
horizontalLayout_3
=
new
QHBoxLayout
();
expires
=
new
QLabel
(
groupBox
);
expires
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
expires
->
setTextInteractionFlags
(
Qt
::
TextSelectableByMouse
);
horizontalLayout_3
->
addWidget
(
expires
);
...
...
@@ -226,7 +226,7 @@ private:
gridLayout
->
addWidget
(
typeLbl
,
row
,
0
,
1
,
1
);
type
=
new
QLabel
(
groupBox
);
type
->
setTextInteractionFlags
(
Qt
::
LinksAccessibleByMouse
|
Qt
::
TextSelectableByMouse
);
type
->
setTextInteractionFlags
(
Qt
::
TextSelectableByMouse
);
gridLayout
->
addWidget
(
type
,
row
,
1
,
1
,
1
);
row
++
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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