Compare commits

...

3 Commits

Author SHA1 Message Date
Matthias Clasen
4c82fd5c4c More hacks
Somewhat mysteriously, the overlayed scrollbars don't work as
scrollbars when faded in beforehand, so let Lapo wiggle his mouse
to make them appear.
2014-11-04 08:11:05 -05:00
Matthias Clasen
0d63fdadfe Temporary hack to avoid fading overlay scrollbars
Temporarily allow disabling the fade out of overlay scrollbars
by setting GTK_OVERLAY_SCROLLING_NO_FADE=1. This is meant to
facilitate theming the overlay scrollbars.
2014-10-27 19:05:10 -04:00
Matthias Clasen
3086970654 Updates for 3.15.1 2014-10-27 18:51:05 -04:00
3 changed files with 35 additions and 2 deletions

32
NEWS
View File

@@ -1,3 +1,35 @@
Overview of Changes in GTK+ 3.15.1
==================================
* An experimental mir backend has been added.
Use --enable-mir-backend to build it.
* Inspector:
- Show more information
- Use a separate display connection
* Deprecations:
- GtkStyleProperties
* Bugs fixed:
707695 GtkLevelBar Colour CSS
737561 quartz: gtk+ 3.14.0 fails to build on 10.6.8, 'NSFullScreen...
738650 fix separator with iconic section and more
738886 Out of bounds access in MyEnhancedXkbTranslateKeyCode
738955 Client-side decoration window menus appear at wrong positio...
738982 Add support for ATK_STATE_HAS_TOOLTIP
739001 Fix Build of broadwayd on Visual Studio
739005 gtkstatusicon.c won't build with both X11 and Quartz backen...
739111 GtkFontChooserDialog fixes
739150 Dragging bookmark crashes nautilus
Translation updates:
Czech
Hungarian
Serbian
Spanish
Overview of Changes in GTK+ 3.15.0
==================================

View File

@@ -10,7 +10,7 @@
m4_define([gtk_major_version], [3])
m4_define([gtk_minor_version], [15])
m4_define([gtk_micro_version], [0])
m4_define([gtk_micro_version], [1])
m4_define([gtk_interface_age], [0])
m4_define([gtk_binary_age],
[m4_eval(100 * gtk_minor_version + gtk_micro_version)])

View File

@@ -3397,7 +3397,8 @@ indicator_set_fade (Indicator *indicator,
if (visible && !gdk_window_is_visible (indicator->window))
{
gdk_window_show (indicator->window);
indicator->conceil_timer = g_timeout_add (INDICATOR_FADE_OUT_TIME, maybe_hide_indicator, indicator);
if (!g_getenv ("GTK_OVERLAY_SCROLLING_NO_FADE"))
indicator->conceil_timer = g_timeout_add (INDICATOR_FADE_OUT_TIME, maybe_hide_indicator, indicator);
}
if (!visible && gdk_window_is_visible (indicator->window))
{