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
OpenFlipper-Free
OpenFlipper
Commits
eee04337
Commit
eee04337
authored
Feb 23, 2017
by
Jan Möbius
Browse files
Nicer Layout in about dialog
parent
b4586869
Changes
1
Hide whitespace changes
Inline
Side-by-side
widgets/coreWidget/About.cc
View file @
eee04337
...
...
@@ -747,12 +747,15 @@ void CoreWidget::showAboutWidget( ) {
// =====================================================================================
// List of build-in resources
// =====================================================================================
aboutWidget_
->
OpenFlipperAbout
->
append
(
"
\n
"
);
aboutWidget_
->
OpenFlipperAbout
->
setCurrentFont
(
boldFont
);
aboutWidget_
->
OpenFlipperAbout
->
append
(
tr
(
"Currently loaded Resources (e.g. by qrc files):"
));
aboutWidget_
->
OpenFlipperAbout
->
setCurrentFont
(
standardFont
);
QDir
toplevelResources
(
":/"
);
for
(
auto
str
:
toplevelResources
.
entryList
()
)
{
aboutWidget_
->
OpenFlipperAbout
->
append
(
" Namespace : "
+
str
);
aboutWidget_
->
OpenFlipperAbout
->
append
(
str
);
QDir
firstLevel
(
":/"
+
str
);
for
(
auto
firstLevelStr
:
firstLevel
.
entryList
()
)
{
...
...
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