From 669475768356bbd0622ed0af5cbf61f0e18b6545 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 8 Aug 2013 00:16:13 +0000 Subject: [PATCH] Save/restore of user's palette choice was broken. Now fixed. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3534 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- widegraph.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 485d244aa..9c8d62579 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,4 +1,4 @@ -//-------------------------------------------------------------- MainWindow +//------------------------------------------------------------- MainWindow #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/widegraph.cpp b/widegraph.cpp index e2b8c1080..51ba2bed1 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -367,5 +367,6 @@ void WideGraph::readPalette(QString fileName) void WideGraph::on_paletteComboBox_activated(const QString &palette) { + m_waterfallPalette=palette; readPalette("Palettes/" + palette + ".pal"); }