diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/resumewidget.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/resumewidget.cc b/client/resumewidget.cc index 6581797..1dd2e6c 100644 --- a/client/resumewidget.cc +++ b/client/resumewidget.cc @@ -53,6 +53,10 @@ void ResumeWidget::setText(QString text) { QString f; + QFont font = font(); + font.setFace("Courier New"); + setFont(font); + #ifdef RICH for(int i = 0; i < text.length(); i++) { if(text[i] >= '0' && text[i] <= '9') f += "<font style='color: #55F;'>" + text[i] + "</font>"; |