Skip to content

Commit

Permalink
Fixed unicode mu
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertLitjens committed May 5, 2018
1 parent f2c990d commit e495adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ASAP/annotation/RectangleAnnotationTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void RectangleAnnotationTool::mouseDoubleClickEvent(QMouseEvent *event) {
std::vector<double> spacing = local_img->getSpacing();
QString suffix(" pixels");
if (spacing.size() > 1) {
suffix = QString::fromUtf8(u8" µm");
suffix = QString::fromUtf8(u8" \u03bcm");
}
QDialog* createRectDiaglog = new QDialog();
createRectDiaglog->setWindowTitle("Specify width and height for rectangular annotations");
Expand Down Expand Up @@ -211,4 +211,4 @@ QAction* RectangleAnnotationTool::getToolButton() {

std::string RectangleAnnotationTool::name() {
return std::string("rectangleannotation");
}
}

0 comments on commit e495adf

Please sign in to comment.