Opened 20 years ago
Closed 20 years ago
#654 closed defect (fixed)
"Arrows" in edit mode appear and disappear every new window opened
| Reported by: | Owned by: | Isaac Richards | |
|---|---|---|---|
| Priority: | minor | Milestone: | unknown |
| Component: | mythtv | Version: | |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
At least from version 0.16, I noticed that every arrows added in "edit mode" disappear when a new window (to add a cut-point) is opened. The funny thing is that all arrows reappear (or disappear) together on a new window.
I had a small "patch" for this a year ago on my system and I've noticed now that this bug it also present in svn version of MythTv.
My patch (not really a bugfix) is in mythtv/libs/libmythtv/osd.cpp, rev 7173. Simply comment line 2129: "sort(setList->begin(), setList->end(), comp());"
Isn't a solution, but the problem start here!
Note:
See TracTickets
for help on using tickets.

(In [8357]) Fix #654. Give the OSDSets containing the edit markers a slightly higher priority than the 'editmode' set so they always appear above it.
For some reason the sort in AddSet() is causing the order of sets with the same priority to invert on each call which was causing the edit markers to blink on and off after each call to AddSet().