mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
Draw horizontal helper lines in frequency display
This commit is contained in:
parent
09b74c44b2
commit
805629cc35
1 changed files with 8 additions and 0 deletions
|
@ -155,6 +155,14 @@ class LineFrequencyWidget (gtk.DrawingArea):
|
||||||
ctx.fill ()
|
ctx.fill ()
|
||||||
ctx.new_path ()
|
ctx.new_path ()
|
||||||
|
|
||||||
|
ctx.set_line_width (1.)
|
||||||
|
ctx.set_source_rgb (.96, .96, .96)
|
||||||
|
for i in range (h // 16):
|
||||||
|
y = i * 16 - .5
|
||||||
|
ctx.move_to (0, y)
|
||||||
|
ctx.line_to (w, y)
|
||||||
|
ctx.stroke ()
|
||||||
|
|
||||||
if self.sentinel_data is None and self.sentinel:
|
if self.sentinel_data is None and self.sentinel:
|
||||||
if w > 15:
|
if w > 15:
|
||||||
self.logger.debug ("running sentinel for width %i", w)
|
self.logger.debug ("running sentinel for width %i", w)
|
||||||
|
|
Loading…
Reference in a new issue