Correct the type display

git-svn-id: file:///home/svn/framework3/trunk@5288 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2008-01-07 07:28:59 +00:00
parent e6edcb9098
commit 175ac427ab
2 changed files with 2 additions and 2 deletions

View File

@ -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: ", "_")

View File

@ -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