Skip to content

Commit

Permalink
disable foreground opacity for now
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Jun 8, 2024
1 parent 0aea33b commit b7091af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontends/rioterm/src/state/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,14 +302,14 @@ impl State {

#[inline]
#[cfg(use_wa)]
pub fn decrease_foreground_opacity(&mut self, acc: f32) {
self.foreground_opacity -= acc;
pub fn decrease_foreground_opacity(&mut self, _acc: f32) {
// self.foreground_opacity -= acc;
}

#[inline]
#[cfg(use_wa)]
pub fn increase_foreground_opacity(&mut self, acc: f32) {
self.foreground_opacity += acc;
pub fn increase_foreground_opacity(&mut self, _acc: f32) {
// self.foreground_opacity += acc;
}

#[inline]
Expand Down

0 comments on commit b7091af

Please sign in to comment.