diff --git a/CHANGELOG b/CHANGELOG index 7fe8eee6..4cc33175 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,10 +8,13 @@ to immplememt in Shoes 4. === New with 3.3.1 - * Video widget. Big deal! + * Video widget. If you have VLC installed, Shoes will find it (and + you can tell Shoes where your VLC is). Once found you can use it. + You can not package VLC with you script however. https://github.com/Shoes3/shoes3/issues/133 * Secondary packaging. Use an Shoes installer to install your app. Not - for the casual. Pretty damn clever so there's bugs. + for the casual. Pretty damn clever and confusing so there's likely to + be odd bugs. https://github.com/Shoes3/shoes3/wiki/Custom-Install-Scripts https://github.com/Shoes3/shoes3/wiki/Command-line-package https://github.com/Shoes3/shoes3/issues/188 @@ -21,10 +24,22 @@ online docs you do find are not always up to date. === Fixed with 3.3.1 + * Linux: fixed edit_box bug with Gtk >= 3.16 + https://github.com/Shoes3/shoes3/issues/217 * OSX: Duplicate Shoes.app windows. Nasty if it happens to you. - Cshoes suffered from this bug. It works better now. + Cshoes suffered from this bug too. That works better now for OSX. https://github.com/Shoes3/shoes3/issues/190 https://github.com/Shoes3/shoes3/issues/175 + * Windows: ask_color crashes. + https://github.com/Shoes3/shoes3/issues/209 + +=== Developer issues for 3.3.1 + * deleted gtk2 code. Video code will be included. + Many rakefiles were modified and are slightly less confusing. + * Windows: dependencies have changed - using Gtk 3.10.9 + https://github.com/Shoes3/shoes3/wiki/Mingw-Dependencies + download from http://shoes.mvmanila.com/public/shoesdeps/mingw/ming-Shoes-3.3.1.tar.gz + if you need them - it's huge! === new with 3.3.0 * Uses Gtk3 (not gtk2) for Linux and Windows. This will change visuals diff --git a/shoes/native/gtkscrolledwindowalt.c b/shoes/native/gtkscrolledwindowalt.c index 8cacdb0c..e50916c2 100644 --- a/shoes/native/gtkscrolledwindowalt.c +++ b/shoes/native/gtkscrolledwindowalt.c @@ -53,9 +53,7 @@ gtk_scrolled_window_alt_init(GtkScrolledWindow_Alt *scrolledwindowAlt) /* This means that GtkScrolledWindow_Alt doesn't supply its own GdkWindow */ //gtk_widget_set_has_window(GTK_WIDGET(scrolledwindowAlt), FALSE); gtk_widget_set_has_window(GTK_WIDGET(scrolledwindowAlt), - gtk_widget_get_has_window(GTK_WIDGET(&(scrolledwindowAlt->parent_instance)))); - - + gtk_widget_get_has_window(GTK_WIDGET(&(scrolledwindowAlt->parent_instance)))); /* Initialize private members */ GtkScrolledWindow_AltPrivate *priv = GTK_SCROLLED_WINDOW_ALT_PRIVATE(scrolledwindowAlt);