scummvm/gui/module.mk
Eugene Sandulenko d6695e180c GUI: Fix tooltip drawing
With help of Tanoku tooltips were switched from widgets to dialogs
which helped to fix nasty bug with background not being restored.
Although it is basically a hack around inconsistent font backbuffering
in our GUI code, for the time being it is feasible.

The patch was extended with way to specify tooltip background in the
theme file.

svn-id: r51217
2010-07-23 19:36:47 +00:00

41 lines
547 B
Makefile

MODULE := gui
MODULE_OBJS := \
about.o \
chooser.o \
console.o \
debugger.o \
dialog.o \
editable.o \
error.o \
EditTextWidget.o \
GuiManager.o \
launcher.o \
ListWidget.o \
massadd.o \
message.o \
object.o \
options.o \
PopUpWidget.o \
saveload.o \
ScrollBarWidget.o \
TabWidget.o \
themebrowser.o \
ThemeEngine.o \
ThemeEval.o \
ThemeLayout.o \
ThemeParser.o \
Tooltip.o \
widget.o
ifdef MACOSX
MODULE_OBJS += \
browser_osx.o
else
MODULE_OBJS += \
browser.o
endif
# Include common rules
include $(srcdir)/rules.mk