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
Utilities
Kate
Commits
efdec5c7
Commit
efdec5c7
authored
Oct 14, 2022
by
Eugene Popov
🇺🇦
Committed by
Eric Armbruster
Oct 16, 2022
Browse files
[WelcomeView] Fix placeholder text
parent
f303943a
Pipeline
#248817
passed with stage
in 6 minutes and 35 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
apps/lib/welcomeview/welcomeview.cpp
View file @
efdec5c7
...
...
@@ -56,7 +56,7 @@ WelcomeView::WelcomeView(KateViewManager *viewManager, QWidget *parent)
labelRecentItems
->
setText
(
KateApp
::
isKate
()
?
i18n
(
"Recent Documents and Projects"
)
:
i18n
(
"Recent Documents"
));
m_placeholderRecentFiles
=
new
Placeholder
;
m_placeholderRecentFiles
->
setText
(
i18n
(
"No recent file
s"
));
m_placeholderRecentFiles
->
setText
(
KateApp
::
isKate
()
?
i18n
(
"No recent documents or projects"
)
:
i18n
(
"No recent document
s"
));
QVBoxLayout
*
layoutPlaceholderRecentFiles
=
new
QVBoxLayout
;
layoutPlaceholderRecentFiles
->
addWidget
(
m_placeholderRecentFiles
);
...
...
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