mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-06 21:32:08 +08:00
cabana: fix overlap in byte highlighting (#27139)
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