summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* file chooser: Drop the location labelMatthias Clasen2015-01-183-17/+3
| | | | Bringing us close to the new design.
* file chooser: Don't show 'Enter Location' in save modesMatthias Clasen2015-01-181-0/+2
| | | | In these modes, the entry is permanently visible anyway.
* file chooser: Make Ctrl-L work in recentMatthias Clasen2015-01-181-2/+6
| | | | | Just switch to browse mode when we see Ctrl-L in recent mode. https://bugzilla.gnome.org/show_bug.cgi?id=660450
* file chooser: Ensure the path bar is initializedMatthias Clasen2015-01-181-0/+4
| | | | | | | | | | | There are some cases where we can end up showing the path bar without ever setting a file on it. One example is: 1) Open file chooser 2) Hit ~ 3) Hit Ctrl-L While this is a bit of a workaround, at least it makes sure that we never end up with an empty space where the path bar is supposed to be.
* trivial refactoringMatthias Clasen2015-01-181-5/+6
|
* file chooser: Make ~ and / work in recentMatthias Clasen2015-01-181-15/+2
| | | | | Complained about in https://bugzilla.gnome.org/show_bug.cgi?id=743117
* Fix a typo in the docsMatthias Clasen2015-01-181-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=743037
* broadway: Only use abstract sockets when they are supportedMatthias Clasen2015-01-182-6/+8
| | | | | | | | GIO has a function to check whether abstract sockets are supported, so use it. This should make broadway work on Freebsd again. https://bugzilla.gnome.org/show_bug.cgi?id=742980
* Make Broadway work on freebsdMatthias Clasen2015-01-181-2/+2
| | | | | | | | It seems that posix_fallocate gives an ENODEV error when called on an fd opened with shm_open on freebsd. Fix up the error check to only trigger if we get ENOSPC. https://bugzilla.gnome.org/show_bug.cgi?id=742980
* Fine-tune the proximity hovering for scrollbarsMatthias Clasen2015-01-181-5/+12
| | | | | Reduce the distance at which we expand the scrollbar, and add some hysteresis.
* Updated Greek translationDimitris Spingos2015-01-182-1236/+1324
|
* Remove some outdated referencesMatthias Clasen2015-01-181-9/+11
| | | | | We shouldn't recommend gtk_widget_modify_bg() or gtk_style_set_background() anymore.
* Adjust gtk_status_icon_position_menu() annotation to match ↵Christoph Reiter2015-01-171-2/+2
| | | | | | | | GtkMenuPositionFunc again https://bugzilla.gnome.org/show_bug.cgi?id=674537 https://bugzilla.gnome.org/show_bug.cgi?id=742940
* Fix event->button.y_root when using mouse buttons and dnd canceledMaks Naumov2015-01-171-1/+1
| | | | | | Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742785
* Fix save_hot_y init in gtk_drag_get_icon()Maks Naumov2015-01-171-1/+1
| | | | | | Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742786
* Updated Basque languageInaki Larranaga Murgoitio2015-01-171-103/+106
|
* Prefer the Wayland backendMatthias Clasen2015-01-171-3/+3
| | | | | | This does not affect X11 sessions, but has the advantage that we get much more testing of the Wayland backend in Wayland sessions.
* inspector: Remove a bunch of unused variablesBenjamin Otte2015-01-171-2/+1
|
* stylecontext: Remove a bunch of return_if_fail()sBenjamin Otte2015-01-171-14/+0
| | | | | They're gonna be in the way when refactoring and we can live without them.
* stylecontext: Do not transition from the default styleBenjamin Otte2015-01-171-2/+6
| | | | | | This gets rid of a bunch of awkward transitions. It's not a perfect solution to the problem of "should we transition from this state" but it gets rid of the ugliest offenders.
* Adwaita: scrollbar style refactoring...Lapo Calamandrei2015-01-163-227/+410
| | | | | ...making overlay indicator slider visible on any backgroung in the process.
* Updated Czech translationMarek Černocký2015-01-141-6/+3
|
* widget: Free the controller list on finalize()Carlos Garnacho2015-01-141-10/+10
| | | | | | | | | | | | If this is done on dispose(), the widget may be destroyed (and its controllers list NULLified) within _gtk_widget_run_controllers(), causing warnings/crashes when it just tried to hop on the next controllers. Freeing the controllers here should be a safety net for implementations, so it also makes sense to do this late. The widgets that choose to free their controllers on dispose can still do so, and get _gtk_widget_remove_controller() called for these as an indirect result.
* listbox: Free the multipress gesture on finalizeCarlos Garnacho2015-01-141-0/+1
|
* Updated Icelandic translationSveinn í Felli2015-01-141-2664/+4030
|
* event-controller: Chain up on disposeCarlos Garnacho2015-01-141-0/+2
|
* Updated Russian translationStas Solovey2015-01-141-435/+265
|
* gtkplacessidebar: insert bookmark by dnd in correct positionNelson Benítez León2015-01-131-0/+19
| | | | | | | Add needed COLUMN INDEX to "new bookmark" row based on previous bookmark index plus one. Fixes bug 742727
* Fix accessible_class->widget_set initializationMaks Naumov2015-01-131-1/+1
| | | | | | Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742778
* Updated Galician translationsFran Dieguez2015-01-121-582/+944
|
* Updated Spanish translationDaniel Mustieles2015-01-121-107/+123
|
* Properly check result of g_utf8_get_char_validated()Maks Naumov2015-01-112-2/+2
| | | | | | | | | | | | g_utf8_get_char_validated() may return -1 or -2 return type is gunichar(guint32) Therefore such checks like 'gunichar < 0' or 'gunichar > 0' are always 'false' or 'true'(except when gunichar == 0). Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742774
* Fix check for 'y' padding in gtk_cell_renderer_set_padding()Maks Naumov2015-01-111-1/+1
| | | | | | Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742764
* Remove an unused defineMatthias Clasen2015-01-111-5/+0
|
* Properly ignore BadWindow and BadDrawable in get_child_info_handler()Maks Naumov2015-01-111-1/+1
| | | | | | Signed-off-by: Maks Naumov <maksqwe1@ukr.net> https://bugzilla.gnome.org/show_bug.cgi?id=742771
* Forgotten fileMatthias Clasen2015-01-101-5/+0
|
* HighContrast: Don't set nonexisting style propertiesMatthias Clasen2015-01-101-6/+2
| | | | These don't exist, so setting them can't do any good.
* Adwaita: Don't set nonexisting style propertiesMatthias Clasen2015-01-103-16/+4
| | | | These don't exist, so setting them can't do any good.
* HighContrast: Also fix separators in file chooser buttonsMatthias Clasen2015-01-102-7/+3
| | | | Same fix as for combo box separators.
* Adwaita: Also fix separators in file chooser buttonsMatthias Clasen2015-01-103-12/+4
| | | | Same fix as for combo box separators.
* gtkfilechooserwidget: When using an extra widget, show or hide the filter ↵Iain Lane2015-01-101-1/+5
| | | | | | combo as appropriate https://bugzilla.gnome.org/show_bug.cgi?id=742653
* HighContrast: draw combo box separatorsMatthias Clasen2015-01-102-4/+2
| | | | Same fix as the previous commit.
* Adwaita: draw combo box separatorsMatthias Clasen2015-01-103-7/+3
| | | | | | | Killing the separator in the button had the unintended side effect of also killing separators in the popup. https://bugzilla.gnome.org/show_bug.cgi?id=742704
* widget-factory: Add a combo box separator exampleMatthias Clasen2015-01-102-6/+37
| | | | | This shows that combo box separators are currently broken in Adwaita.
* GtkTextView: allow to extend text selection with mouse scrollwheelNelson Benitez Leon2015-01-101-0/+14
| | | | Fixes bug 710612
* file chooser: Add some padidngMatthias Clasen2015-01-101-1/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=742631
* Forgotten filesMatthias Clasen2015-01-102-0/+4
|
* Adwaita: Fix treeview separators in backdropMatthias Clasen2015-01-101-0/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=742702
* stylecontext: Stop animations on manual invalidationBenjamin Otte2015-01-101-0/+3
| | | | | | | | If a gtk_style_context_invalidate() is called on a widget's style context (which nobody should ever do, sheesh!) and we're animating, stop the animations. Fixes crashers in Nautilus.
* GtkScrolledWindow: Don't start fading right awayMatthias Clasen2015-01-091-2/+0
| | | | | | | | When we get a leave event, we need to remove the over bit, since we may not get motion events that tell us when we lose proximity, but we don't have to fade out right away - that will happen on its on due to inactivity a bit later. Having the indicator stay visible for a bit feels more relaxed.