freebsd-ports/irc/xchat/files/patch-src_fe-gtk_fe-gtk.c
Jeremy Messenger d50933c749 - Fix the invisible cursor color when using GTKSpell and a black input box
(when "Use the text box font & colors" is ON). Took from xchat CVS.
- Fix the plist when disable dbus support.
- Add a new knob, WITHOUT_GTKSPELL, to disable spell check support.
- Bump the PORTREVISION.
2006-06-13 22:31:23 +00:00

14 lines
385 B
C

--- src/fe-gtk/fe-gtk.c 2006/06/07 06:16:51 1.66
+++ src/fe-gtk/fe-gtk.c 2006/06/12 03:23:23 1.67
@@ -225,7 +225,11 @@
const char cursor_color_rc[] =
"style \"xc-ib-st\""
"{"
+#ifdef USE_GTKSPELL
+ "GtkTextView::cursor-color=\"#%02x%02x%02x\""
+#else
"GtkEntry::cursor-color=\"#%02x%02x%02x\""
+#endif
"}"
"widget \"*.xchat-inputbox\" style : application \"xc-ib-st\"";