summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Basque languageInaki Larranaga Murgoitio2016-03-241-1/+1
|
* Updated Basque languageInaki Larranaga Murgoitio2016-03-241-1568/+1747
|
* Updated Basque languageInaki Larranaga Murgoitio2016-03-241-628/+780
|
* High Contrast Inverse: switchesJakub Steiner2016-03-243-9/+9
| | | | | | - make sure both non active and active states are contrasty https://bugzilla.gnome.org/show_bug.cgi?id=763802
* High Contrast Inverse: set contrasty selected itemsJakub Steiner2016-03-242-125/+125
| | | | | | - selected bg was set lighter without appropriate fg color https://bugzilla.gnome.org/show_bug.cgi?id=763804
* High Contrast Inverse: scale trough fixJakub Steiner2016-03-242-2/+2
| | | | | | - make the trough more visible for HCI https://bugzilla.gnome.org/show_bug.cgi?id=763805
* Updated POTFILES.skipPiotr Drąg2016-03-242-0/+2
|
* add a css style test for font: smallerMatthias Clasen2016-03-244-0/+39
|
* Adwaita: avoid sizing transition on the scale...Lapo Calamandrei2016-03-243-2/+5
| | | | ... since it ends up jumpy.
* Adwaita: placesview connect to server label paddingLapo Calamandrei2016-03-243-0/+12
| | | | adds some padding to the "connect to server" label
* Adwaita: fix menu scroll arrows positioningLapo Calamandrei2016-03-243-45/+73
| | | | | adresses the style part of https://bugzilla.gnome.org/show_bug.cgi?id=764118
* Updated Slovak translationDušan Kazik2016-03-241-8/+8
|
* switch: An active switch is :checkedBenjamin Otte2016-03-238-32/+32
| | | | | | Fix an oversight that should have happened in the gadget refactoring: An active switch should be :checked, just like togglebuttons, checkbuttons, etc.
* quartz: fix pixelated image surfaces in retina/hidpi modeChristoph Reiter2016-03-231-2/+13
| | | | | | | | | | | | | | | | | | | | gtk+ currently depends on the scaling factor and the cairo device scale of both the backend surfaces and image surfaces to be equal. Until now we didn't apply a cairo device scale at all and depended on the automatic scaling of CGContexts. This works when drawing with cairo but fails in case of image surfaces, which get requested at a too small size. To make the quartz backend behave more like the X11 one, set the cairo device scale on the surface in gdk_quartz_ref_cairo_surface(). As this conflicts with the default scaling done by CGContext (we would get double scaling) undo the CGContext scaling using CGContextScaleCTM(). This patch is based on the following patches by Brion Vibber: https://bugzilla.gnome.org/show_bug.cgi?id=740199#c4 https://bugs.freedesktop.org/show_bug.cgi?id=69796#c4 https://bugzilla.gnome.org/show_bug.cgi?id=763779
* Updated Russian translationStas Solovey2016-03-231-11/+5
|
* Updated Galician translationFran Dieguez2016-03-231-53/+56
|
* Updated Slovenian translationMatej Urbančič2016-03-221-26/+15
|
* Updated Russian translationStas Solovey2016-03-221-42/+54
|
* Run a11y tests with csd for make checkMatthias Clasen2016-03-221-0/+1
| | | | | I've made this change for installed tests a while ago. It doesn't make sense for distcheck to do it differently.
* inspector: Look for themes in system data dirsMatthias Clasen2016-03-221-0/+9
| | | | This matches what GTK+ does now.
* Fix an accidentally deleted lineMatthias Clasen2016-03-221-1/+2
| | | | Not sure when this went missing, just fix the formatting.
* Updated Spanish translationDaniel Mustieles2016-03-221-58/+73
|
* Updated Slovak translationDušan Kazik2016-03-221-60/+72
|
* Added Bulgarian translationZahari Yurukov2016-03-221-2036/+1670
|
* Load theme settings from the right locationMatthias Clasen2016-03-214-25/+40
| | | | | | | | | | When loading a per-theme settings.ini file, look for it in the same directory where we found the gtk.css file for the theme. Previously, we were always looking in $prefix/share/themes/THEME/gtk-3.0/, even if the css was loaded from somewhere else. https://bugzilla.gnome.org/show_bug.cgi?id=641354
* Also look in system data dirs for themesMatthias Clasen2016-03-211-5/+19
| | | | | | | | | | With this change, we now look in $XDG_DATA_HOME/themes/THEME/gtk-3.x $HOME/.themes/THEME/gtk-3.x $XDG_DATA_DIRS/themes/THEME/gtk-3.x GTK_DATA_PREFIX/themes/THEME/gtk-3.x https://bugzilla.gnome.org/show_bug.cgi?id=641354
* wayland: avoid dropping surfaces when possibleChristian Hergert2016-03-211-0/+5
| | | | | | | | | If the configure-event gives us the same size as we had before, which is common for animation resizes, then try to keep the existing buffer around. This saves us a memfd_create() syscall on every frame. https://bugzilla.gnome.org/show_bug.cgi?id=763350
* Updated Danish translationAsk Hjorth Larsen2016-03-211-7/+7
|
* Adwaita: simplify treeview:drop(active) codeLapo Calamandrei2016-03-213-30/+15
|
* gtk-demo: Improve markup demoMatthias Clasen2016-03-212-6/+69
| | | | | | Add squiggly underlines and background, and make the markup editable. https://bugzilla.gnome.org/show_bug.cgi?id=763741
* textview: Track differences between ink and logical rectsBenjamin Otte2016-03-213-6/+34
| | | | | | | This way, we can ensure that we queue redraws on the full ink rect. This is particularly visible for squiggly underlines in spell checking. https://bugzilla.gnome.org/show_bug.cgi?id=763741
* Updated Greek translationTom Tryfonidis2016-03-211-474/+503
|
* Updated Swedish translationAnders Jonsson2016-03-211-30/+42
|
* wayland: Rename internal functions with misleading namingCarlos Garnacho2016-03-211-31/+31
| | | | | | | | | Now that GdkWaylandDeviceData is gone, the functions prefixed "gdk_wayland_device_" and taking a GdkWaylandSeat as first parameter feel out of place. Renaming those makes it more obvious that it's seat functions. https://bugzilla.gnome.org/show_bug.cgi?id=763859
* wayland: Remove GdkWaylandDataDevice typedefCarlos Garnacho2016-03-211-1/+0
| | | | | | It's no longer used. https://bugzilla.gnome.org/show_bug.cgi?id=763859
* wayland: Replace all remaining uses of GdkWaylandDeviceDataCarlos Garnacho2016-03-211-347/+348
| | | | | | | And use GdkWaylandSeat in all of those. The variable names have also been updated. https://bugzilla.gnome.org/show_bug.cgi?id=763859
* wayland: Remove GdkWaylandDeviceData pointer in GdkWaylandDeviceCarlos Garnacho2016-03-211-220/+227
| | | | | | | | It's the same than gdk_device_get_seat() nowadays. Also, rename the usages of GdkWaylandDeviceData to GdkWaylandSeat in the functions affected by the removal. https://bugzilla.gnome.org/show_bug.cgi?id=763859
* Fix the buildMatthias Clasen2016-03-211-1/+1
|
* shortcutswindow: Make the search button squareMatthias Clasen2016-03-211-0/+1
| | | | | | | Add the image-button style class to this button (this doesn't work automatically here, since this is a toggle button). https://bugzilla.gnome.org/show_bug.cgi?id=763604
* Adwaita: Update treeview drop target stylingMatthias Clasen2016-03-213-3/+29
| | | | | | | This reinstates the between-the-rows highlight that was lost at some point. https://bugzilla.gnome.org/show_bug.cgi?id=763808
* treeview: Update drop target highlightingMatthias Clasen2016-03-211-35/+10
| | | | | | | | Stop using the .dnd style class, and instead use the :drop(active) pseudo state, together with .before and .after classes. https://bugzilla.gnome.org/show_bug.cgi?id=763808
* quartz: Fix up dnd codeMatthias Clasen2016-03-211-46/+2
| | | | | | Copy changes to drag highlight drawing from gtkdnd.c to gtkdnd-quartz.c. https://bugzilla.gnome.org/show_bug.cgi?id=763808
* stack: query preferred size for last_visible_childChristian Hergert2016-03-211-1/+8
| | | | | | | | | | | | When animating, we might be changing the size allocation of the previous stack child. However, we were not querying the size in the process meaning you would often see warnings about allocating the size without knowing what it should be. This simply adds an innocuous size request, since responding to last_child sizing requests is not all that critical in the transition. https://bugzilla.gnome.org/show_bug.cgi?id=763900
* gtk-demo: Rework foreigndrawing to use sizes from the themeCarlos Garcia Campos2016-03-211-201/+551
| | | | | | | | Instead of hardcoding the size of the widgets. This makes the output closer to real widgets and fixes the blurry icons. I've also added a scale. https://bugzilla.gnome.org/show_bug.cgi?id=763758
* dnd: Hide the drag window when we're doneMatthias Clasen2016-03-212-1/+18
| | | | | | | | | We were just relying on the drag context finalize() to destroy the window. But with garbage-collected bindings, that might not happen as soon as we like, so explicitly hide the window when the drag ends successfully. https://bugzilla.gnome.org/show_bug.cgi?id=763659
* print-operation: Be more robust in the error pathDebarshi Ray2016-03-211-2/+3
| | | | | | | | | | | This isn't an issue at the moment. Only exporting to a file can fail by setting by setting an error and it happens to correctly return GTK_PRINT_OPERATION_RESULT_ERROR regardless of this code. Still, let's make this block of code more correct to prevent future changes from introducing broken behaviour. https://bugzilla.gnome.org/show_bug.cgi?id=763731
* Updated Danish translationAsk Hjorth Larsen2016-03-211-1863/+2111
|
* 3.20.03.20.0Matthias Clasen2016-03-212-2/+5
|
* Updated Finnish translationJiri Grönroos2016-03-211-66/+44
|
* Updated Czech translationMarek Černocký2016-03-211-56/+76
|