mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
DIsplay Event Flags when LineCursor is turned off
This commit is contained in:
parent
c19b617e15
commit
27abdf7fcd
@ -1086,8 +1086,12 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
double sum = 0;
|
||||
int cnt = 0;
|
||||
|
||||
// Draw the linechart overlays
|
||||
if (m_day && (AppSetting->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))) {
|
||||
//Draw the linechart overlays (Event flags) independant of line Cursor mode
|
||||
//The problem was that turning lineCUrsor mode off (or Control L) also stopped flag event on most daily graphs.
|
||||
// The user didn't know what trigger the problem. Best quess is that Control L was typed by mistable.
|
||||
// this fix allows flag events to be normally displayed when the line Cursor mode is off.
|
||||
//was if (m_day /*&& (AppSetting->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))*/)
|
||||
if (m_day) {
|
||||
bool blockhover = false;
|
||||
for (auto fit=flags.begin(), end=flags.end(); fit != end; ++fit) {
|
||||
code = fit.key();
|
||||
|
Loading…
Reference in New Issue
Block a user