~ubuntu-branches/ubuntu/precise/indicator-sound/precise-201111281906

« back to all changes in this revision

Viewing changes to src/indicator-sound.c

Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
539
539
        voip_input_widget_update (VOIP_INPUT_WIDGET(priv->voip_widget), new_value);
540
540
      }
541
541
      else{
542
 
        volume_widget_update (VOLUME_WIDGET(priv->volume_widget), new_value);
 
542
        volume_widget_update (VOLUME_WIDGET(priv->volume_widget), new_value, "keypress-update");
543
543
      }
544
544
    }
545
545
  }
660
660
    value -= adj->step_increment;
661
661
  }
662
662
  //g_debug("indicator-sound-scroll - update slider with value %f", value);
663
 
  volume_widget_update(VOLUME_WIDGET(priv->volume_widget), value);
 
663
  volume_widget_update(VOLUME_WIDGET(priv->volume_widget), value, "scroll updates");
664
664
 
665
665
  sound_state_manager_show_notification (priv->state_manager, value);
666
666
}