From cd3d9bc769abc913cac36bed5ba7915c32650761 Mon Sep 17 00:00:00 2001 From: Gananath <24630963+Gananath@users.noreply.github.com> Date: Sun, 4 Jan 2026 09:40:42 +0530 Subject: [PATCH] Highlighted the line numbers of sidebar breakpoints for enhanced visibility --- gdbgui/src/js/Links.tsx | 2 +- gdbgui/static/css/gdbgui.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdbgui/src/js/Links.tsx b/gdbgui/src/js/Links.tsx index da72d1bc..1bb6f97e 100644 --- a/gdbgui/src/js/Links.tsx +++ b/gdbgui/src/js/Links.tsx @@ -41,7 +41,7 @@ export class FileLink extends React.Component { > {this.props.file} {sep} - {line > 0 ? line : ""} + {line > 0 ? {line} : ""} diff --git a/gdbgui/static/css/gdbgui.css b/gdbgui/static/css/gdbgui.css index 71ec63f3..54c18596 100644 --- a/gdbgui/static/css/gdbgui.css +++ b/gdbgui/static/css/gdbgui.css @@ -448,3 +448,8 @@ button:focus { on focused buttons */ outline-width: 0 !important; } + +.sidebar_bp_line_num { + font-weight: bold; + font-size: 1.0em; +}