fixed bw graph window to display both up+dn

This commit is contained in:
csoler 2021-01-31 23:28:15 +01:00
parent 60893e2344
commit f61b37e10b
5 changed files with 78 additions and 106 deletions

View file

@ -45,6 +45,7 @@ public:
/** Default constructor */
BandwidthGraph(QWidget *parent = 0, Qt::WindowFlags flags = 0);
virtual ~BandwidthGraph();
public slots:
/** Overloaded QWidget.show */
@ -59,8 +60,6 @@ private slots:
void showSettingsFrame(bool show);
/** Called when the settings button is toggled */
void setOpacity(int value);
/** Called when the user saves settings */
void saveChanges();
/** Called when the user cancels changes settings */
void cancelChanges();
/** Called when the reset button is pressed */
@ -71,6 +70,7 @@ private:
void createActions();
/** Loads the saved Bandwidth Graph settings */
void loadSettings();
void saveSettings();
/** Qt Designer generated object */
Ui::BandwidthGraph ui;