From 74aaa9665acccddfac2e592df37906d1890eb840 Mon Sep 17 00:00:00 2001 From: Mike Walters Date: Wed, 2 Mar 2016 23:47:42 +0000 Subject: [PATCH] plot: Tweak default height --- plot.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plot.h b/plot.h index c635c00..cb66e78 100644 --- a/plot.h +++ b/plot.h @@ -36,5 +36,6 @@ protected: void setHeight(int height) { _height = height; }; private: - int _height = 50; + // TODO: don't hardcode this + int _height = 200; };