mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +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;
|
double sum = 0;
|
||||||
int cnt = 0;
|
int cnt = 0;
|
||||||
|
|
||||||
// Draw the linechart overlays
|
//Draw the linechart overlays (Event flags) independant of line Cursor mode
|
||||||
if (m_day && (AppSetting->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))) {
|
//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;
|
bool blockhover = false;
|
||||||
for (auto fit=flags.begin(), end=flags.end(); fit != end; ++fit) {
|
for (auto fit=flags.begin(), end=flags.end(); fit != end; ++fit) {
|
||||||
code = fit.key();
|
code = fit.key();
|
||||||
|
Loading…
Reference in New Issue
Block a user