From 2a31e0721d9e2d999f456e3836f17b4c874bddeb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 18 Jun 2021 20:31:37 -0400 Subject: [PATCH] Push2: Invert splash screen This looked janky and out of place to me, since everything else is on black and the LCD doesn't seem to do light backgrounds very well in general. --- libs/surfaces/push2/splash.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/surfaces/push2/splash.cc b/libs/surfaces/push2/splash.cc index 1a5626e6bb..375cf908ac 100644 --- a/libs/surfaces/push2/splash.cc +++ b/libs/surfaces/push2/splash.cc @@ -73,7 +73,7 @@ SplashLayout::render (Rect const& area, Cairo::RefPtr context) c /* background */ - context->set_source_rgb (0.764, 0.882, 0.882); + context->set_source_rgb (0.0, 0.0, 0.0); context->paint (); /* image */ @@ -94,7 +94,7 @@ SplashLayout::render (Rect const& area, Cairo::RefPtr context) c some_text->set_text (string_compose ("%1 %2", PROGRAM_NAME, VERSIONSTRING)); context->move_to (200, 10); - context->set_source_rgb (0, 0, 0); + context->set_source_rgb (0.764, 0.882, 0.882); some_text->update_from_cairo_context (context); some_text->show_in_cairo_context (context); @@ -103,7 +103,7 @@ SplashLayout::render (Rect const& area, Cairo::RefPtr context) c some_text->set_text (_("Ableton Push 2 Support")); context->move_to (200, 80); - context->set_source_rgb (0, 0, 0); + context->set_source_rgb (0.764, 0.882, 0.882); some_text->update_from_cairo_context (context); some_text->show_in_cairo_context (context); }