Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
zeozeozeo committed Apr 25, 2024
1 parent 01db8a7 commit 54b02e2
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1535,16 +1535,12 @@ impl App {
"Variation",
)
.on_hover_text("Changes the bounds of the random volume offset");
ui.radio_value(
&mut self.conf.expr_variable,
ExprVariable::Value,
ExprVariable::Value.to_string(),
)
.on_hover_text("Changes the volume value (addition)");
ui.radio_value(&mut self.conf.expr_variable, ExprVariable::Value, "Value")
.on_hover_text("Changes the volume value (addition)");
ui.radio_value(
&mut self.conf.expr_variable,
ExprVariable::TimeOffset,
ExprVariable::TimeOffset.to_string(),
"Time offset",
)
.on_hover_text("Offsets the time of the action");
});
Expand Down

0 comments on commit 54b02e2

Please sign in to comment.