From 9ecbe7071cd41c94518fb41df3967b7536e9702f Mon Sep 17 00:00:00 2001 From: Sarathkrishnan Ramesh Date: Fri, 5 Jun 2020 04:52:32 +0530 Subject: [PATCH] Sort GUI plugins alphabetically (#71) Signed-off-by: Sarathkrishnan Ramesh --- src/MainWindow.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MainWindow.cc b/src/MainWindow.cc index 3b32f1bd4..a0a40d0ca 100644 --- a/src/MainWindow.cc +++ b/src/MainWindow.cc @@ -129,6 +129,7 @@ QStringList MainWindow::PluginListModel() const } } + pluginNames.sort(); return pluginNames; }