Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Procrat committed May 10, 2023
1 parent 9a86a92 commit c1604f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/gui/view/graph-editor/src/component/profiling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ impl Button {
/// Constructs a new button for toggling the editor's view mode.
pub fn new(app: &Application) -> Button {
let scene = &app.display.default_scene;
let style_sheet = scene.style_sheet.clone_ref();
let styles = StyleWatchFrp::new(&style_sheet);
let style_sheet = &scene.style_sheet;
let styles = StyleWatchFrp::new(style_sheet);
let frp = Frp::new();
let network = &frp.network;

Expand Down

0 comments on commit c1604f2

Please sign in to comment.