From 0d58f3c28451cf48ebd6c06ce5af7cd397782df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 27 Jun 2005 02:01:32 +0000 Subject: [PATCH] BFont::IsFixed() doesn't seem to work correctly under the app_server yet (though the implementation *looks* correct), so I've disabled this check for now. This let it draw the data correctly, although the line selection has artifacts that are not present under R5. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13290 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskprobe/DataView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apps/diskprobe/DataView.cpp b/src/apps/diskprobe/DataView.cpp index 03399fa611..b7fa7e169d 100644 --- a/src/apps/diskprobe/DataView.cpp +++ b/src/apps/diskprobe/DataView.cpp @@ -1272,8 +1272,10 @@ DataView::KeyDown(const char *bytes, int32 numBytes) void DataView::SetFont(const BFont *font, uint32 properties) { +#if 0 if (!font->IsFixed()) return; +#endif BView::SetFont(font, properties);