mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 19:12:07 +08:00
cabana: fix overlap in byte highlighting (#27139)
old-commit-hash: d76012ec38ff5b996a329d35adc21ade17845d53
This commit is contained in:
@@ -85,7 +85,7 @@ void MessageBytesDelegate::paint(QPainter *painter, const QStyleOptionViewItem &
|
||||
pos.moveLeft(pos.x() + space.width());
|
||||
|
||||
int m = space.width() / 2;
|
||||
const QMargins margins(m + 1, m, m, m);
|
||||
const QMargins margins(m, m, m, m);
|
||||
|
||||
int i = 0;
|
||||
for (auto &byte : opt.text.split(" ")) {
|
||||
|
||||
Reference in New Issue
Block a user