Fix keyboard focus glitch

This commit is contained in:
Mark Watkins 2014-07-21 04:05:36 +10:00
parent b9f2960131
commit 6a7ffac96b
3 changed files with 9 additions and 2 deletions

View File

@ -266,7 +266,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
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);
} }
} }

View File

@ -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);
} }

View File

@ -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;