summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_gauge.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-02-16 09:03:57 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-02-17 09:24:14 -0600
commit309ca938e6a6617a2cc40cb6748a46c327e9f773 (patch)
treec3ef1fe84e7a13cfce456d6647ce2f28cbe0ff5a /gtk2_ardour/ardour_gauge.cc
parented459ab70a4bbfbb771bb87fa26273a9c449199e (diff)
Add Disk IO gauge.
Diffstat (limited to 'gtk2_ardour/ardour_gauge.cc')
-rw-r--r--gtk2_ardour/ardour_gauge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_gauge.cc b/gtk2_ardour/ardour_gauge.cc
index 7387b86b38..f4877c5f7a 100644
--- a/gtk2_ardour/ardour_gauge.cc
+++ b/gtk2_ardour/ardour_gauge.cc
@@ -43,7 +43,7 @@ ArdourGauge::on_size_request (Gtk::Requisition* req)
int w, h;
_layout->get_pixel_size (w, h);
- req->width = std::max (req->width, 80 /*std::max (20, w + PADDING) */);
+ req->width = std::max (req->width, 100 /*std::max (20, w + PADDING) */);
req->height = std::max (req->height, std::max (12, h + PADDING));
}