From e44236b2fb013265cdf01cf124779ff366466de7 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 14 Nov 2013 10:46:07 -0700 Subject: [PATCH] fix typo that caused the wrong icon to be displayed --- gui/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/source.py b/gui/source.py index 93db2f8..5c3e548 100644 --- a/gui/source.py +++ b/gui/source.py @@ -196,7 +196,7 @@ class SourceWindow(Toplevel): attrs = GtkSource.MarkAttributes() attrs.set_pixbuf(self._get_pixmap('icons/breakpoint-marker.png')) - self.view.set_mark_attributes('executable', attrs, 1) + self.view.set_mark_attributes('breakpoint', attrs, 1) lru_handler.add(self)