mirror of
https://github.com/tromey/gdb-gui.git
synced 2025-12-16 07:10:04 +01:00
use a monospace font
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 2012, 2013 Tom Tromey <tom@tromey.com>
|
# Copyright (C) 2012, 2013, 2015 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -25,7 +25,7 @@ import gui.toplevel
|
|||||||
import gui.events
|
import gui.events
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
from gi.repository import Gtk, GtkSource, GObject, Gdk, GdkPixbuf
|
from gi.repository import Gtk, GtkSource, GObject, Gdk, GdkPixbuf, Pango
|
||||||
|
|
||||||
class BufferManager:
|
class BufferManager:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
@@ -193,6 +193,10 @@ class SourceWindow(Toplevel):
|
|||||||
self.window = builder.get_object("sourcewindow")
|
self.window = builder.get_object("sourcewindow")
|
||||||
self.view = builder.get_object("view")
|
self.view = builder.get_object("view")
|
||||||
|
|
||||||
|
font_desc = Pango.FontDescription('monospace')
|
||||||
|
if font_desc:
|
||||||
|
self.view.modify_font(font_desc)
|
||||||
|
|
||||||
attrs = GtkSource.MarkAttributes()
|
attrs = GtkSource.MarkAttributes()
|
||||||
# FIXME: really we want a little green dot...
|
# FIXME: really we want a little green dot...
|
||||||
attrs.set_pixbuf(self._get_pixmap('icons/countpoint-marker.png'))
|
attrs.set_pixbuf(self._get_pixmap('icons/countpoint-marker.png'))
|
||||||
|
|||||||
Reference in New Issue
Block a user