diff --git a/src/apps/diskprobe/ProbeView.cpp b/src/apps/diskprobe/ProbeView.cpp index d195e6824e..858f9f48b4 100644 --- a/src/apps/diskprobe/ProbeView.cpp +++ b/src/apps/diskprobe/ProbeView.cpp @@ -792,9 +792,14 @@ TypeMenuItem::DrawContent() // draw the label BMenuItem::DrawContent(); + font_height fontHeight; + Menu()->GetFontHeight(&fontHeight); + // draw the type - BPoint point = Menu()->PenLocation(); + BPoint point = ContentLocation(); point.x = Frame().right - 4 - Menu()->StringWidth(fType.String()); + point.y += fontHeight.ascent; + Menu()->DrawString(fType.String(), point); }