Use UTF-8 minus sign instead of dash

This commit is contained in:
John Scipione
2014-01-10 15:19:22 -05:00
parent 090ba6d06b
commit a2bf375cbd
+1 -1
View File
@@ -1172,7 +1172,7 @@ ScreenWindow::_CreateColumnRowButton(bool columns, bool plus)
message->AddInt32("delta_x", columns ? (plus ? 1 : -1) : 0);
message->AddInt32("delta_y", !columns ? (plus ? 1 : -1) : 0);
BButton* button = new BButton(plus ? "+" : "-", message);
BButton* button = new BButton(plus ? "+" : "\xe2\x88\x92", message);
button->SetFontSize(be_plain_font->Size() * 0.9);
BSize size = button->MinSize();