I am having a problem with underlining font in my menu, here is part of the window code.
It all works fine, but I can't get it to underline, here is the line I tried.
Any help would be appreciated, thanks.
Code:
def initialize
super(0, 0, 320,380)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = "Arial"
self.contents.font.size = 22
self.contents.font.bold = false
self.contents.font.color = text_color(0)
self.contents.draw_text(90, 0, 150, 33, "Initial party")
end
It all works fine, but I can't get it to underline, here is the line I tried.
Code:
self.contents.font.underline = true
Any help would be appreciated, thanks.