From ee51d7fa67269da2a07009d82a4efc13ce573274 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Thu, 21 Apr 2016 11:45:37 -0700 Subject: [PATCH] Make room in capture mode for other controls. --- firmware/application/capture_app.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/application/capture_app.hpp b/firmware/application/capture_app.hpp index 8888f9f0f..fa3dab6ce 100644 --- a/firmware/application/capture_app.hpp +++ b/firmware/application/capture_app.hpp @@ -94,7 +94,7 @@ public: std::string title() const override { return "Capture"; }; private: - static constexpr ui::Dim header_height = 2 * 16; + static constexpr ui::Dim header_height = 3 * 16; static constexpr uint32_t sampling_rate = 4000000; static constexpr uint32_t baseband_bandwidth = 2500000; @@ -108,7 +108,7 @@ private: void on_vga_changed(int32_t v_db); ImageButton button_start_stop { - { 0 * 8, 0, 2 * 8, 1 * 16 }, + { 0 * 8, 2 * 16, 2 * 8, 1 * 16 }, &bitmap_record, Color::red(), Color::black()