| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Make GtkSearchHit carry a GFile instead of an uri. Most of the
search engines already have the object around, and converting
to an uri and back is unnecessary extra work.
|
|
|
|
|
| |
This is slow, and causes too much network I/O.
So skip locations that look like they are remote.
|
|
|
|
|
|
|
| |
Add a helper function that says whether a location should be
considered remote. To determine this, we look at the filesystem
type reported by gvfs, and say 'remote' for sftp, webdav, ftp,
nfs and cifs.
|
|
|
|
|
|
| |
We didn't connect to the signals, so we never picked up
any search results from the model engine. Good thing, since
it was returning the wrong thing.
|
|
|
|
|
|
| |
GtkSearchEngineModel was still trying to return uris as hits.
This is not working anymore, we are expected to return GtkSearchHit
structs.
|
|
|
|
|
| |
Failure to do so was causing search to start from the home dir
when the current folder is not represented on the sidebar.
|
|
|
|
|
|
| |
It is a bit pointless to have the file chooser get a uri from an
existing GFile to put in the query, only to have some of the search
engines reconstruct a GFile from it.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The button is the same in both menu and list mode, so there's no need to
destroy and recreate it.
|
| |
|
|
|
|
| |
The visible check is always FALSE, so no need to keep the code around.
|
|
|
|
|
|
|
| |
... when in menu mode.
Now that we don't have a separator anymore, the box is not needed
anymore.
|
|
|
|
|
|
|
| |
It was a special case and it's not used by themes anymore.
Plus, in the CSS world, if a theme wants a separator, it can just
style the button's border to create one.
|
|
|
|
|
| |
dialog-information was twice in the list of accessible labels
for icon names.
|
|
|
|
|
| |
Selecting a range of rows with Shift-click was accidentally broken
in e6e511eb460d8fcd. Make it work again.
|
|
|
|
|
|
| |
This is necessary to make notebook tab DND work.
https://bugzilla.gnome.org/show_bug.cgi?id=752638
|
|
|
|
|
|
|
|
| |
If a drag ends inside a known window, set the dest_window field
in the drag context. This information is needed to implemented
notebook tab dragging.
https://bugzilla.gnome.org/show_bug.cgi?id=752638
|
|
|
|
|
|
|
|
|
| |
Without properly cleaning up GtkMenu private attach state
(GtkMenuAttachData) when the attached widget is freed, we would end up
with an invalid pointer to a freed widget. Trying to detach from that
widget would cause a segmentation fault.
https://bugzilla.gnome.org/show_bug.cgi?id=752761
|
|
|
|
|
|
|
|
| |
-1 means that we have no specific preference for an initial
fullscreen monitor, and -1 is less than the number of monitors,
so we would end up accessing invalid memory. Prevent that.
https://bugzilla.gnome.org/show_bug.cgi?id=752875
|
| |
|
|
|
|
|
|
|
| |
This changes GTK+ to use gdk_cursor_new_from_name() with the
'standard' css names, instead of GdkCursorType.
https://bugzilla.gnome.org/show_bug.cgi?id=652085
|
|
|
|
| |
Approximate some of the resize cursors with similar cursors.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Call chain:
- input_data_cb
- broadway_server_read_all_input_nonblocking (input)
- broadway_input_free (input)
(now input is invalid)
attempt to use input->active -> use-after-free
Make broadway_server_read_all_input_nonblocking return a boolean, TRUE
if the input was valid, FALSE otherwise. This allows input_data_cb to
detect whether the input was gone or not.
https://bugzilla.gnome.org/show_bug.cgi?id=741685
|
|
|
|
|
| |
We don't use pangoft2 at all in libgdk, but we are using it in libgtk
both under X and Wayland.
|
|
|
|
|
| |
libcanberra calls x11 backend functions, so we can't use it
when the x11 backend is disabled.
|
|
|
|
|
|
|
|
| |
Rewrite gtk_places_sidebar_set_show_enter_location docs, add
references to the relevant signals, remove mentions of
GtkPlacesView from the docs, since it is not public at this point.
https://bugzilla.gnome.org/show_bug.cgi?id=752633
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=752677
|
| |
|
| |
|
|
|
|
| |
Show normal filtering as well.
|
|
|
|
| |
Just to show that buttons in notebook tabs work.
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=752810
|
|
|
|
| |
As pointed out by lazka in IRC, /me clearly out of phase after allow-none.
|
|
|
|
|
| |
These functions respect NULLs being passed, so the return values are
(nullable).
|
|
|
|
|
| |
We're not really using the coordinates in that function, we just
double check it's not an unrelated event.
|
|
|
|
|
|
| |
The deprecated and a11y sources of GTK+ were spun off some time ago into
their own Makefile.inc, which is then included by gtk/Makefile.am. Fix the
generation of file sources for the GTK+ .gir.
|
|
|
|
|
| |
Ensure variables are declared at the top of the block, and remove a ';;',
which C89 compilers don't like.
|
| |
|
| |
|
|
|
|
|
|
| |
When the dialog is as narrow as possible, we still want some
space between the entry and the search button, so use margins
around the entry and label instead of box spacing.
|
|
|
|
|
|
|
| |
We should not override an explicitly set show-hidden value
when loading the setting.
https://bugzilla.gnome.org/show_bug.cgi?id=610925
|
|
|
|
|
|
|
|
| |
This ensures that windows appear in the inspectors tree when
they are created, and it prevents GTK_DEBUG=interactive from
coming up with an empty object tree.
https://bugzilla.gnome.org/show_bug.cgi?id=752664
|
|
|
|
|
| |
Currently, we only ever scanned the toplevel list and
widget tree once. That is not enough.
|
|
|
|
|
|
|
|
|
|
|
| |
The previous fix was falling into the crack between
realized and mapped - we would apply the state when a window
is just realized, then unset the _initially flag, and then
when the window gets mapped, we'd undo the state. To fix
this, go back to the way things were when these flags were
first introduced.
https://bugzilla.gnome.org/show_bug.cgi?id=752765
|
|
|
|
| |
A typo and non-matching parameter names.
|
|
|
|
|
|
|
|
|
|
|
| |
Windows does not send any release key event for one of the shift keys
when both shift keys were pressed together. This commit solves
the problem by sending the extra release key event for the shift key
which was released as first, when the other shift key is released.
Other modifiers (e.g. Ctrl, Alt) do not have this problem.
https://bugzilla.gnome.org/show_bug.cgi?id=751721
|
| |
|