This commit is contained in:
Chris Cochrun 2025-04-23 15:18:40 -05:00
parent 73baad8ae6
commit d16acf2139
2 changed files with 3 additions and 3 deletions

View file

@ -302,9 +302,9 @@ impl cosmic::Application for App {
let presenter_window = self.windows.get(1); let presenter_window = self.windows.get(1);
let text = if self.presentation_open { let text = if self.presentation_open {
text::body("End Presentation") text::text("End Presentation")
} else { } else {
text::body("Present") text::text("Present")
}; };
vec![ vec![

View file

@ -565,7 +565,7 @@ pub(crate) fn slide_view<'a>(
Background::Color(Color::BLACK) Background::Color(Color::BLACK)
.scale_alpha(0.4), .scale_alpha(0.4),
) )
.padding(3)]) .padding(1)])
.size(font_size) .size(font_size)
.font(font) .font(font)
.center() .center()