Skip to content

Commit

Permalink
change operation button text size
Browse files Browse the repository at this point in the history
  • Loading branch information
maddymakesgames committed Mar 1, 2024
1 parent 14501c6 commit 417d8d6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions save_gui/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,11 @@ impl EditorScreen {
ui.vertical(|ui| {
// TODO: remove most expects from this impl
ui.horizontal(|ui| {
if ui.button(RichText::new("Save File").heading2()).clicked() {
if ui.button(RichText::new("Save File").info()).clicked() {
self.save_file(rt);
}

if ui
.button(RichText::new("Merge in file").heading2())
.clicked()
{
if ui.button(RichText::new("Merge in file").info()).clicked() {
self.merge_file(rt);
}

Expand Down

0 comments on commit 417d8d6

Please sign in to comment.