From edfe64fd633d83ea30cf4f61de9fdff0dcbc398e Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Fri, 26 May 2017 22:42:38 +0200 Subject: [PATCH] Settings Dialog: Visually break up items in the about listing --- pv/dialogs/settings.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pv/dialogs/settings.cpp b/pv/dialogs/settings.cpp index 5e2be818..f2f9e269 100644 --- a/pv/dialogs/settings.cpp +++ b/pv/dialogs/settings.cpp @@ -251,6 +251,7 @@ QWidget *Settings::get_about_page(QWidget *parent) const #endif /* Set up the supported field */ + s.append(""); s.append("" + tr("Supported hardware drivers:") + ""); for (auto entry : context->drivers()) { @@ -259,6 +260,7 @@ QWidget *Settings::get_about_page(QWidget *parent) const QString::fromUtf8(entry.second->long_name().c_str()))); } + s.append(""); s.append("" + tr("Supported input formats:") + ""); for (auto entry : context->input_formats()) { @@ -267,6 +269,7 @@ QWidget *Settings::get_about_page(QWidget *parent) const QString::fromUtf8(entry.second->description().c_str()))); } + s.append(""); s.append("" + tr("Supported output formats:") + ""); for (auto entry : context->output_formats()) { @@ -276,6 +279,7 @@ QWidget *Settings::get_about_page(QWidget *parent) const } #ifdef ENABLE_DECODE + s.append(""); s.append("" + tr("Supported protocol decoders:") + ""); GSList *sl = g_slist_copy((GSList *)srd_decoder_list()); -- 2.30.2