Commit graph

17435 commits

Author SHA1 Message Date
Nelson Benitez Leon 4618b96b42 Unwanted refresh when hovering over pathbar location
Don't call nautilus_window_slot_open_location if the location
has already been loaded, as it causes an unwanted refresh.

Fixes bug 705492

Signed-off-by: Nelson Benítez León <nbenitezl+gnome@gmail.com>
2013-08-05 21:01:40 +02:00
Cosimo Cecchi 31059f33c8 canvas-item: use gtk_render_icon_surface for the DnD surface
So to get HiDpi support.
2013-08-05 16:48:16 +02:00
Cosimo Cecchi 622d1abc56 list-view: don't start DnD when dragging an expander
Avoid making expanders in list view drag sources.
2013-08-05 03:55:07 +02:00
Cosimo Cecchi 18a380af8d list-view: use the cairo surface as a drag icon
As we now store surfaces in the GtkListStore, we have to change the
drag method to use it instead of a pixbuf.
2013-08-05 03:54:18 +02:00
Cosimo Cecchi 6f32b42280 list-view: don't crash when expanding a directory
We need to check for file != NULL, which is true in the case we just
started expanding the directory.
2013-08-04 23:29:10 +02:00
Cosimo Cecchi 3a6053f1d7 properties-window: support HiDpi for the properties window icon
This was missing from the last commit.
2013-08-04 02:41:54 +02:00
Cosimo Cecchi b3b4bea51e file: support HiDpi for thumbnails images
This was missing from the last commit.
2013-08-04 02:41:26 +02:00
Cosimo Cecchi f4ced15684 Remove extraneous separator from editable label context menu 2013-08-03 15:30:20 +02:00
Chao-Hsiung Liao 47aab0047c Updated Traditional Chinese translation(Hong Kong and Taiwan) 2013-08-03 21:20:35 +08:00
Cosimo Cecchi 0d4555d76f Support HiDpi icons
Port the rendering of icons to cairo surfaces, so that we can apply the
GDK scale factor when rendering icons.
2013-08-03 15:13:16 +02:00
aakash 9fd0032d2b nautilus-canvas-dnd: Prefer XDS over text/uri-list
This patch is related to bug 607427. It just gives higher priority to
XDS than text/uri-list. This is helpful in applications which support
both.
2013-08-02 16:15:03 +02:00
Yaron Shahrabani e8053ec499 Updated Hebrew translation. 2013-07-31 09:13:40 +03:00
Nelson Benitez Leon e2b480650f Bug 703233 - When you drag a file in nautilus, it updates page
Don't call nautilus_window_slot_open_location for the current
location, as it's already opened and causes an unwanted refresh.

Bug was introduced in commit 0d635bda

Signed-off-by: Nelson Benítez León <nbenitezl+gnome@gmail.com>
2013-07-30 23:06:25 +02:00
William Kunkel 35b76688d9 Bug 698892 - Replace slashes in dnd'd text
https://bugzilla.gnome.org/show_bug.cgi?id=698892
2013-07-29 10:45:44 -07:00
Yosef Or Boczko e55e42b1ac toolbar: Set button arrow icons according to locale's text direction
https://bugzilla.gnome.org/show_bug.cgi?id=705072
2013-07-29 18:41:28 +03:00
Jasper St. Pierre 65e62a75e3 search-provider: Use a serialized gicon instead of a to_string'd one
This improves deserialization performance in gnome-shell.

https://bugzilla.gnome.org/show_bug.cgi?id=704949
2013-07-26 14:43:37 -04:00
Enrico Nicoletto c17ac4cd42 Updated Brazilian Portuguese translation 2013-07-23 09:58:40 -03:00
Antonio Fernandes C. Neto fc609abd2b Updated Brazilian Portuguese translation with Jonh Wendell assistance 2013-07-23 09:41:14 -03:00
Fran Diéguez 80c002d9dc Updated Galician translations 2013-07-23 00:00:14 +02:00
Daniel Mustieles 11cf2cbedf Updated Spanish translation 2013-07-22 13:51:39 +02:00
Garrett Regier 4d7f5f68b7 Bug 704061 - Replace $HOME in the Location column
Also replace it in the Trash's Original Location column.
2013-07-20 12:30:18 -07:00
Anish A 3df7fad4db Updated Malayalam Translation 2013-07-19 11:24:26 +05:30
Garrett Regier 8a312968ef Bug 699718 - Add metadata capabilities to search 2013-07-18 08:20:07 -07:00
Kjartan Maraas e188559490 Updated Norwegian bokmål translation 2013-07-18 14:05:32 +02:00
Srinivasa Ragavan ee5dd2a231 Listen to SHOW_HIDDEN_FILES gtkfilechooser settings and adapt.
Fixes bug #697807
2013-07-17 23:19:47 +05:30
Srinivasa Ragavan fabea85329 Store the correct current_item if it has changed. It is incorrect to
ignore the new current item just because the mouse is down. It is
later used for right click.

Fixes bgo #704289.
2013-07-17 19:30:47 +05:30
Marek Černocký 4a6353c6cf Updated Czech translation 2013-07-16 10:56:12 +02:00
Christian Kirbach 659a96868f Clarify error message in connect server dialogue (Bug 704295) 2013-07-16 07:50:13 +02:00
Pavol Klačanský 8c9398ce67 Updated slovak translation 2013-07-15 23:12:34 +02:00
Christian Kirbach e1562dc4db Updated German translation 2013-07-15 23:04:08 +02:00
Marek Černocký a38efb9064 Updated Czech translation 2013-07-14 10:34:21 +02:00
Garrett Regier e64f6cc89f Bug 622941 - Show column chooser when header is right clicked 2013-07-13 14:56:19 -07:00
Garrett Regier e19f7cb3fe Bug 697183 - Fix resize columns after adding/removing them
Instead of appending and removing the columns simply set their
visibility. This seems to fix the issue after attempting to reproduce
the bug for a few minutes.

Signed-off-by: Garrett Regier <garrett@yorba.org>
2013-07-13 14:56:13 -07:00
Marek Černocký 16efa5349d Updated Czech translation 2013-07-12 21:30:23 +02:00
Ryan Lortie 96554c2020 nautilus-global-preferences: use 'extern' properly
Variables in header files should have 'extern' on them and be defined
from a single .c file, otherwise you get a copy of the variable every
time you #include the header.

-fcommon masks this problem, but building with -fno-common fails because
of it.

https://bugzilla.gnome.org/show_bug.cgi?id=704117
2013-07-12 15:18:37 -04:00
Daniel Mustieles ea2c8d86b7 Updated Spanish translation 2013-07-12 14:53:26 +02:00
Garrett Regier 1fd016ed96 Bug 686137 - Add Access Date column and set as default for recent 2013-07-11 16:20:41 -07:00
Garrett Regier 7f438463c7 Bug 697187 - Show relative paths in location column when searching 2013-07-11 16:20:41 -07:00
Trần Ngọc Quân 90bf4dfb00 Updated Vietnamese translation 2013-07-06 18:43:18 +07:00
Nguyễn Thái Ngọc Duy 95be2f8862 po/vi: import from Damned Lies 2013-07-06 18:40:53 +07:00
Marek Černocký 9d1fb717b7 Updated Czech translation 2013-06-26 19:03:55 +02:00
Iain Lane 5c00b42658 Remove extra location widgets when disposing NautilusWindowSlot
This causes the widgets to be properly destroyed before the NautilusView
is.

https://bugzilla.gnome.org/show_bug.cgi?id=702546
2013-06-25 10:08:32 -07:00
Akira Tanaka 499d107677 l10n: Update Japanese translation 2013-06-24 01:00:11 +09:00
Garrett Regier e3ca31da55 Bug 374661 - Show Location column by default for search results 2013-06-21 01:36:30 -07:00
Garrett Regier b0a951b60f Bug 698190 - Update visible column on reset to defaults 2013-06-21 01:36:30 -07:00
Garrett Regier f597b7e901 Bug 698252 - Use the activation location for the where string of recent files 2013-06-21 01:36:30 -07:00
Garrett Regier 2986e4ff02 Bug 698932 - Allow double clicking to toggle visible column in chooser 2013-06-21 01:34:28 -07:00
Piotr Drąg 1fea70abd3 Fix Slovenian translation 2013-06-20 15:40:33 +02:00
Kjartan Maraas 0155ebcc1f Updated Norwegian bokmål translation 2013-06-20 10:40:57 +02:00
Andrés G. Aragoneses 9473dd41c1 build: stop using INCLUDES, deprecated by automake 1.7
We already depend on automake 1.9, so using the replacement of
INCLUDES (AM_CPPFLAGS) won't hurt, especially now that it is
a warning shown by default since automake 1.13, as evidenced by
this build log of mine:

Makefile.am: installing './INSTALL'
eel/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
eel/Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'
libnautilus-extension/Makefile.am:7: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
libnautilus-private/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
nautilus-sendto-extension/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/Makefile.am:13: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
test/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Signed-off-by: Alexander Larsson <alexl@redhat.com>
2013-06-18 11:30:31 +02:00