gnome-applets r10916 - in trunk: . mixer
- From: callum svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-applets r10916 - in trunk: . mixer
- Date: Mon, 18 Aug 2008 11:43:10 +0000 (UTC)
Author: callum
Date: Mon Aug 18 11:43:10 2008
New Revision: 10916
URL: http://svn.gnome.org/viewvc/gnome-applets?rev=10916&view=rev
Log:
2.23.90
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.in
trunk/mixer/dock.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Mon Aug 18 11:43:10 2008
@@ -1,3 +1,24 @@
+Changes in GNOME-Applets 2.23.90
+===============================
+Codename: Prime Mover
+
+ - Invest Applet
+ - Remove gnome-vfs dependence (Matteo Zandi).
+ - Mixer Applet
+ - Fixes to window positioning and decoration for the popup window (Callum
+ McKenzie).
+ - Multiload Applet
+ - Spelling fixes (Og Maciel).
+ - Trash Applet
+ - Remove residual gnome-vfs code (Andre Klapper).
+
+Doc translations:
+
+
+Translations:
+ ar, bn_IN, es, fi, gl, he, nb, pt, pt_BR, th
+
+
Changes in GNOME-Applets 2.23.4
===============================
Codename: Irregular Apocalyse
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Mon Aug 18 11:43:10 2008
@@ -1,7 +1,7 @@
dnl ***************************************************************************
dnl *** configure.in for GNOME-APPLETS ***
dnl ***************************************************************************
-AC_INIT(gnome-applets, 2.23.4)
+AC_INIT(gnome-applets, 2.23.90)
AC_PREREQ(2.59)
AM_CONFIG_HEADER(config.h)
Modified: trunk/mixer/dock.c
==============================================================================
--- trunk/mixer/dock.c (original)
+++ trunk/mixer/dock.c Mon Aug 18 11:43:10 2008
@@ -67,6 +67,7 @@
dock->orientation = -1;
dock->timeout = 0;
+#if 0
/* We can't use a simple GDK_WINDOW_TYPE_HINT_DOCK here since
* the dock windows don't accept input by default. Instead we use
* the popup menu type. In the end we set everything by hand anyway
@@ -79,6 +80,15 @@
gtk_window_set_skip_pager_hint (GTK_WINDOW (dock), TRUE);
gtk_window_set_resizable (GTK_WINDOW (dock), FALSE);
gtk_window_stick (GTK_WINDOW (dock));
+#else
+ /* This works well, except that keyboard focus is impossible. */
+ gtk_window_set_type_hint (GTK_WINDOW (dock),
+ GDK_WINDOW_TYPE_HINT_DOCK);
+ gtk_window_set_decorated (GTK_WINDOW (dock), FALSE);
+ gtk_window_set_resizable (GTK_WINDOW (dock), FALSE);
+ gtk_window_stick (GTK_WINDOW (dock));
+ GTK_WIDGET_SET_FLAGS (dock, GTK_CAN_FOCUS);
+#endif
}
GtkWidget *
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]