mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix keyboard focus glitch
This commit is contained in:
parent
b9f2960131
commit
6a7ffac96b
@ -266,7 +266,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
|
|
||||||
int wid, h;
|
int wid, h;
|
||||||
GetTextExtent(text, wid, h);
|
GetTextExtent(text, wid, h);
|
||||||
w.renderText(text, left + width/2 - wid/2, top-h+7);
|
w.renderText(text, left + width/2 - wid/2, top-h+5);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -45,6 +45,10 @@ MaskProfile masks[] = {
|
|||||||
};
|
};
|
||||||
const int num_masks = sizeof(masks) / sizeof(MaskProfile);
|
const int num_masks = sizeof(masks) / sizeof(MaskProfile);
|
||||||
|
|
||||||
|
void PreferencesDialog::showEvent(QShowEvent * event)
|
||||||
|
{
|
||||||
|
mainwin->getDaily()->graphView()->releaseKeyboard();
|
||||||
|
}
|
||||||
|
|
||||||
PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||||
QDialog(parent),
|
QDialog(parent),
|
||||||
@ -297,7 +301,6 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
|||||||
|
|
||||||
resetGraphModel();
|
resetGraphModel();
|
||||||
|
|
||||||
grabKeyboard();
|
|
||||||
// tree->sortByColumn(0,Qt::AscendingOrder);
|
// tree->sortByColumn(0,Qt::AscendingOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,6 +68,9 @@ class PreferencesDialog : public QDialog
|
|||||||
//! \brief Updates the date text of the last time updates where checked
|
//! \brief Updates the date text of the last time updates where checked
|
||||||
void RefreshLastChecked();
|
void RefreshLastChecked();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual void showEvent(QShowEvent * event);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_eventTable_doubleClicked(const QModelIndex &index);
|
void on_eventTable_doubleClicked(const QModelIndex &index);
|
||||||
void on_combineSlider_valueChanged(int value);
|
void on_combineSlider_valueChanged(int value);
|
||||||
@ -102,6 +105,7 @@ private:
|
|||||||
//! \brief Populates the Graph Model view with data from the Daily, Overview & Oximetry gGraphView objects
|
//! \brief Populates the Graph Model view with data from the Daily, Overview & Oximetry gGraphView objects
|
||||||
void resetGraphModel();
|
void resetGraphModel();
|
||||||
|
|
||||||
|
|
||||||
Ui::PreferencesDialog *ui;
|
Ui::PreferencesDialog *ui;
|
||||||
Profile *profile;
|
Profile *profile;
|
||||||
QHash<int, QColor> m_new_colors;
|
QHash<int, QColor> m_new_colors;
|
||||||
|
Loading…
Reference in New Issue
Block a user