mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-03 23:52:41 +00:00
d6695e180c
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
41 lines
547 B
Makefile
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
|