| 101 | |
| 102 | |
| 103 | QFont ByteView::getFont() |
| 104 | { |
| 105 | QFont userFont = getMonospaceFont(this); |
| 106 | #ifdef Q_OS_MACOS |
| 107 | // Some fonts aren't fixed width across all characters, use a known good one |
| 108 | QFont font("Menlo", userFont.pointSize()); |
| 109 | font.setKerning(false); |
| 110 | #else |
| 111 | QFont font = userFont; |
| 112 | #endif |
| 113 | return font; |
| 114 | } |
| 115 | |
| 116 | |
| 117 | uint64_t ByteView::getStart() |