138e958614
icon view: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
85b4eef004
icon theme: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
359d3669ff
file chooser: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
d71c5bf983
entry: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
2a0d5c39d9
dnd: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
29ab70b801
css: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
f16fc99391
combo box: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
1f525e263e
builder: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
75f0146c69
application: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
7c03f62206
accel map: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:15 -04:00
94825c1777
about dialog: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:14 -04:00
00236c0d21
Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:14 -04:00
23032587db
printing: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:14 -04:00
fdb9a8e142
x11: Fix compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:14 -04:00
393df9f7e1
wayland: Avoid compiler warnings
...
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
2015-06-02 09:08:14 -04:00
73693381b2
Updated Tajik translation
2015-06-02 05:20:50 +00:00
13c303fec5
Bug 745957 - GTK+/Quartz >= 3.14.8: Symbol not found: _gtk_drag_cancel
...
Implement gtk_drag_cancel, made public in c160ba069 and 62616a71, in
gtkdnd-quartz.c.
2015-05-31 11:59:34 -07:00
f5b245ff04
GtkStack: Don't mix code and declarations
2015-05-30 09:43:56 -04:00
833dbd65cd
Trivial: Use a convenience macro
...
g_strstrip is less obscure than the two individual functions,
so lets use it here.
2015-05-30 09:36:51 -04:00
4c971c6f5e
file chooser: Respect recent settings
...
When recent files are not supported in gvfs, or turned off by
settings, we should not try to load them even if the startup
mode says so. This prevents inconsistency with the places
sidebar where 'Recent' will not appear in this case.
2015-05-30 09:21:16 -04:00
4de444ca61
placessidebar: Simplify some code
...
Use existing functions, instead of open-coding manipulation
of string arrays.
2015-05-30 09:20:27 -04:00
5984bc78ee
flowbox: Fix compiler warnings
...
Introduced in e59e38b581
2015-05-30 06:00:14 +02:00
91fac8b5aa
cssnode: Fix position invalidation
...
The previous code was overly complicated and wrong.
2015-05-30 05:50:31 +02:00
e59e38b581
GtkFlowBox: support positional css selectors
...
As in the previous commit for GtkListBox, support :first-child,
:last-child, :nth-child() and :last-nth-child() selectors here.
2015-05-29 23:37:42 -04:00
aa07c40748
listbox: add support for :first-child, :last-child and others
...
This applies the proper CSS child ordering semantics using GtkCssNode to
GtkListBox. You can now use :first-child, :last-child, :nth-child(), and
:last-nth-child() selectors.
For example, this allows styling row separators using CSS while ignoring
the separator on the last row.
GtkListBoxRow {
border-bottom: 1px solid @borders;
}
GtkListBoxRow:last-child {
border-bottom: none;
}
When the sort ordering of the listbox changes, we also update the CSS
node ordering.
2015-05-29 20:03:11 -07:00
bb93c1cecd
Updated Occitan translation
2015-05-29 21:50:59 +00:00
205db2013c
Fix DnD Introspection on Quartz Backend.
...
Don't exclude the -quartz.c files from introspection_files.
2015-05-29 13:27:39 -07:00
4d75d62033
GtkStack: Interpolate between size changes
2015-05-29 17:37:04 +02:00
0eddfcedb9
GtkStack: Remove some useless function calls
...
We will call gtk_widget_queue_resize anyway later when finishing the
(maybe non-running) transition, which will also cause the stack to be
repainted.
2015-05-29 17:37:04 +02:00
24193a38f0
GtkStack: Keep the last_visible_child around during transitions
...
We need it later.
2015-05-29 17:37:04 +02:00
dc55a895ed
GtkStack: Misc indentation fixes
2015-05-29 17:37:04 +02:00
6d25e52a4d
GtkStack: Remove useless cast
2015-05-29 17:37:04 +02:00
c0d535a718
GtkStack: Remove useless function calls
...
These both just use the default values anyway.
2015-05-29 17:37:04 +02:00
bdabea3ae3
GtkStack: Save last visible widget size
...
When interpolating the stack size, we compute the current size by using
the prefered/minimum current size and the last size. We can't use the
last_visible_surface_allocation because that is not available until the
first _draw call and it doesn't include the child's margins.
2015-05-29 17:37:04 +02:00
b3bbe99001
GtkStack: Remove gtk_widget_set_opacity call
...
The corresponding call with 0.999 opacity is gone, so we don't need to
reset the opacity anymore.
2015-05-29 17:37:04 +02:00
d3a18de97e
gtkpopover: Update the menu's alignment
...
... when the popover position changes.
2015-05-29 17:37:04 +02:00
36c65c1aca
Fix GDK MSVC Projects
...
We need to link to dwmapi.lib for all configs, not just the Broadway
ones, so fix the build.
2015-05-29 18:10:59 +08:00
02e2f7dc56
Fix a cornercase crash
...
If gtk_text_layout_move_cursor_visually is called with a
count of 0, we were passing NULL to a free function that
can't handle it. Don't do that.
https://bugzilla.gnome.org/show_bug.cgi?id=750058
2015-05-28 23:42:14 -04:00
03312371da
cssmatcher: Speed up common matching
...
first-child and last-child are the most common usages of the nth-child
machinery, so special-casing them makes sense.
2015-05-28 17:41:47 +02:00
59a7739fce
cssmatcher: Rewrite nth-child matcher
...
Instead of trying to be smart, be stupid but correct.
Fixes nth-child reftest.
2015-05-28 17:12:57 +02:00
4847eff6c4
cssmatcher: Simplify code
...
Instead of copy/paste, pass the only difference as an argument
The code still doesn't work right, but at least it's easier to fix now.
2015-05-28 17:07:25 +02:00
9df707da22
gtk: Add deprecation guards for newest pango deprecations
2015-05-28 16:54:03 +02:00
d921a4fe84
testsuite: Add deprecation guards
2015-05-28 16:53:53 +02:00
d8885777a1
Updated Spanish translation
2015-05-28 06:42:39 +00:00
a75754ef93
3.17.3
2015-05-27 17:19:56 -04:00
65299b55b2
Updated Spanish translation
2015-05-27 15:23:53 +00:00
fe6e5d3116
3.17.2
2015-05-26 14:58:15 -04:00
43ba6a492e
Dist the gtk-builder-tool test script
2015-05-26 14:58:15 -04:00
9aae351487
examples: Clean up the standalone Makefiles
...
Do not hardcode GCC as the compiler; use $(shell) expansion instead of
backticks; split the built source into its own variable.
2015-05-26 18:01:39 +01:00
9ff5d2e1ac
entry: Set up text drag icon within drag_begin()
...
the drag_begin() vmethod is meant for this, and the internal DnD code
will set up a drag icon if ::drag_begin didn't do so, which means
we are first getting a "default" icon, and then replacing it with the
text surface.
This is completely harmless in X11, but causes issues on wayland as
the DnD icon window is expected to remain unchanged during DnD there.
https://bugzilla.gnome.org/show_bug.cgi?id=748763
2015-05-26 18:05:36 +02:00