Correct the type display
git-svn-id: file:///home/svn/framework3/trunk@5288 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
e6edcb9098
commit
175ac427ab
|
@ -16,7 +16,7 @@ module Gtk2
|
|||
@buffer.delete(*@buffer.bounds)
|
||||
start = @buffer.get_iter_at_offset(0)
|
||||
@buffer.insert_with_tags(start, "Type: ", '_')
|
||||
@buffer.insert_with_tags(start, obj.class.to_s + "\n", 'red_bold_cust')
|
||||
@buffer.insert_with_tags(start, obj.type + "\n", 'red_bold_cust')
|
||||
@buffer.insert_with_tags(start, "Author(s): ", "_")
|
||||
@buffer.insert_with_tags(start, obj.author_to_s + "\n", 'forestgreen_bold_cust')
|
||||
@buffer.insert_with_tags(start, "Path: ", "_")
|
||||
|
|
|
@ -258,7 +258,7 @@ class MsfWindow
|
|||
hbox = Gtk::HBox.new
|
||||
prompt = Gtk::Entry.new
|
||||
prompt.set_size_request(-1, 25)
|
||||
prompt.text = "msf > "
|
||||
prompt.text = ""
|
||||
|
||||
prompt.editable = false
|
||||
prompt.xalign = 1
|
||||
|
|
Loading…
Reference in New Issue