Ejemplo n.º 1
0
void structSoundEditor :: v_unhighlightSelection (double left, double right, double bottom, double top) {
	if (p_spectrogram_show)
		Graphics_unhighlight (d_graphics.get(), left, right, 0.5 * (bottom + top), top);
	else
		Graphics_unhighlight (d_graphics.get(), left, right, bottom, top);
}
Ejemplo n.º 2
0
void SoundEditor::unhighlightSelection (double left, double right, double bottom, double top) {
	if (_spectrogram.show)
		Graphics_unhighlight (_graphics, left, right, 0.5 * (bottom + top), top);
	else
		Graphics_unhighlight (_graphics, left, right, bottom, top);
}