Mercurial > pidgin.yaz
view pixmaps/Makefile.mingw @ 8466:5562e8a74c94
[gaim-migrate @ 9196]
" if the user has the pref set to false, we're still
handling the key.. This is bad if for instance.. the
user wants to do something like ctrl-shift-b-3 to
display a superscripted 3. This patch makes the
callback function return FALSE so that it will
propergate down to the GtkTextView and give the user
the desired behavior.
i realized this will conflict when i finish 9, 10, and 11 on
simguys list, and since i already had 11 done.. I'll just
throw it in with this.. so here's the updated update patch ;)
simguy's imhtml bug 11 is that the italic and underline
buttons don't get toggled when you press ctrl-i ctrl-u this
fixes that as well as my initial comment ;)" --Gary Kramlich
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 17 Mar 2004 20:23:44 +0000 |
parents | bc494c4a3991 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Gaim pixmaps # datadir = ../win32-install-dir include ./Makefile.am install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f Makefile.mingw install; \ done; \ fi; if test '$(gaimbuttonpix_DATA)'; then \ mkdir -p $(gaimbuttonpixdir); \ cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \ fi; if test '$(gaimdialogpix_DATA)'; then \ mkdir -p $(gaimdialogpixdir); \ cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \ fi; if test '$(gaimiconpix_DATA)'; then \ mkdir -p $(gaimiconpixdir); \ cp $(gaimiconpix_DATA) $(gaimiconpixdir); \ fi; if test '$(gaimdistpix_DATA)'; then \ mkdir -p $(gaimdistpixdir); \ cp $(gaimdistpix_DATA) $(gaimdistpixdir); \ fi; if test '$(distpixmap_DATA)'; then \ mkdir -p $(distpixmapdir); \ cp $(distpixmap_DATA) $(distpixmapdir); \ fi;