mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
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.
This commit is contained in:
parent
c4632da2e7
commit
2a31e0721d
1 changed files with 3 additions and 3 deletions
|
|
@ -73,7 +73,7 @@ SplashLayout::render (Rect const& area, Cairo::RefPtr<Cairo::Context> 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<Cairo::Context> 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<Cairo::Context> 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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue