summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* release: prepare for 3.5.33.5.3Cosimo Cecchi2012-06-252-1/+10
|
* pathbar: fix unwanted ellipsizing in buttons with certain themesCosimo Cecchi2012-06-251-62/+55
| | | | | | | | | | | | | | | | | Themes can nowadays set padding on GtkLabel widgets (e.g. Ambiance and Radiance do this for labels in primary toolbar buttons). This breaks our hack to force a size request for the pathbar labels, since we measure the PangoLayout directly instead of measuring the GtkLabel it's part of (which includes the border/padding values from the theme). Fix this by measuring the size requisition of GtkLabel directly; for this to work effectively, we need to pack an (invisible) additional label in the button GtkBox, always set the text to both labels and update the requisition of the non-bold one to MIN(MAX_POSSIBLE_WIDTH, MAX (width, bold_width)) every time a size-request cycle is called. https://bugzilla.gnome.org/show_bug.cgi?id=678341
* Update Punjabi TranslationA S Alam2012-06-191-1557/+1526
|
* icon-view: fix thumbnails not showing regressionCosimo Cecchi2012-06-181-4/+2
| | | | | | | | | | | This was introduced in 241e462024070d9f79f4816256fc00ff5119e25f - the original code did if (!is_compact || zoom > standard) So since is_compact is now always false, the commit should have removed the if block completely. https://bugzilla.gnome.org/show_bug.cgi?id=678351
* Updated Greek translationTom Tryfonidis2012-06-171-1495/+1276
|
* Fix rename cancellationTomas Bzatek2012-06-151-8/+8
| | | | | | | | | This changes the way the wait dialog cancellation callback works. Instead of cleaning up early we just cancel the operation and wait for proper rename_callback() carrying the error. This fixes an assertion failure when the wait dialog has been displayed and user pressed the Cancel button. Unlikely to happen, found during gvfs testing.
* Updated Arabic translationKhaled Hosny2012-06-121-1557/+1535
|
* window-menus: disconnect from GtkSettings notifications on finalizeCosimo Cecchi2012-06-122-3/+11
| | | | | | | | | Or if something (e.g. another process via xsettings) causes the GtkSettings to change the value of gtk-shell-shows-app-menu after a window is finalized, our callback will run and we'll crash trying to access freed memory. https://bugzilla.gnome.org/show_bug.cgi?id=677945
* search-bar: use GtkSearchEntryCosimo Cecchi2012-06-112-16/+2
|
* Updated Norwegian bokmål translationKjartan Maraas2012-06-111-358/+293
|
* places-sidebar: allow dropping of files to bookmarksCosimo Cecchi2012-06-111-98/+10
| | | | | | | | | | | | Change the way DnD works in the places sidebar. After this commit, DnD on the bookmarks area will always mean "copy/move the DnD source into the bookmark" instead of "add a bookmark to this location" (DnD of bookmark rows in their section will still reorder them), since that's the most common action you want to do. This also makes it consistent with the default action obtained by dropping on the built-in places below. https://bugzilla.gnome.org/show_bug.cgi?id=645353
* places-sidebar: cleanupsCosimo Cecchi2012-06-111-12/+8
|
* Updated Greek translationIoannis Zampoukas2012-06-101-2837/+2595
|
* icon-container: fix some GCC warningsCosimo Cecchi2012-06-092-0/+4
|
* a11y: add missing prototypeCosimo Cecchi2012-06-081-0/+2
|
* Updated Belarusian translation.Ihar Hrachyshka2012-06-081-1443/+1373
|
* window: make sure to hide the main toolbar on the desktopCosimo Cecchi2012-06-081-0/+4
| | | | | Fallout from 0a80b533dc81e5175485fe6a2a13c6648c3a07f0 src/nautilus-file-management-properties.ui.rej
* a11y: fix accessibility implementation for NautilusIconContainerCosimo Cecchi2012-06-074-186/+103
| | | | | | | | | | Clean up a11y code and make sure inheritance for EelCanvasAccessible->NautilusIconContainerAccessible and for EelCanvasItemAccessible->NautilusIconCanvasItemAccessible work properly. This makes the ATK state machinery in EelCanvasItemAccessible work again, which fixes https://bugzilla.gnome.org/show_bug.cgi?id=677509
* a11y: remove now unused codeCosimo Cecchi2012-06-072-92/+0
| | | | eel_accessibility_create_derived_gtype() is now unused.
* icon-container: use eel_accessibility_create_accessible_gtypeCosimo Cecchi2012-06-071-27/+18
| | | | Instead of eel_accessibility_create_derived_type.
* a11y: make sure not to loop while looking for parent get_accessibleCosimo Cecchi2012-06-071-2/+8
| | | | | | If the final class does not override the get_accessible method, it will inherit it from the parent class; what we're interested in is the first class for which get_accessible is != from our class get_accessible.
* editable-label: fix accessibility supportCosimo Cecchi2012-06-071-5/+5
| | | | | | | Use the previously introduced function to create a suitable GtkAccessible implementation. https://bugzilla.gnome.org/show_bug.cgi?id=672498
* a11y: add a method to create a derived GtkWidgetAccessible typeCosimo Cecchi2012-06-072-0/+36
| | | | | | | | | | | For EelEditableLabel, we need to create an object derived from the accessible type of the parent class; since that will be a GtkWidgetAccessible, which is private, we can't just subclass it using the regular GObject mechanisms. This functions creates a derived GType by peeking at the parent accessible class and type. https://bugzilla.gnome.org/show_bug.cgi?id=672498
* sidebar: don't forget to NULL slot pointer after volume is mountedCosimo Cecchi2012-06-071-0/+1
| | | | | | Or we will hit an assertion when trying to mount another volume later. https://bugzilla.gnome.org/show_bug.cgi?id=677611
* release: prepare for 3.5.23.5.2Cosimo Cecchi2012-06-042-1/+18
|
* pathbar: set a maximum label width for pathbar buttonsCosimo Cecchi2012-06-041-5/+18
| | | | | | | | | | | | | | | | | | Set a maximum allowed width of 250px for pathbar button requisitions, and ellipsize after that. This fixes buttons disappearing completely from the pathbar in case there was not enough space to show the complete folder name, I am not sure I completely like this approach in all the situations, since there might be some value in showing more of a very long folder name if there's space available on screen, but unfortunately, it's not really possible without restructuring completely the way NautilusPathBar allocates children. Adapted for master, and slightly modified from an initial patch by Ted M Lin <tedmlin@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=313854
* pathbar: simplify codeCosimo Cecchi2012-06-041-18/+9
|
* Updated French translationBruno Brouard2012-06-041-1481/+1186
|
* Updated Galician translationsFran Diéguez2012-06-031-327/+311
|
* Updated Hebrew translation.Yaron Shahrabani2012-06-021-656/+615
|
* preferences: don't create a GSettings for non-existing schemaAndreas Proschofsky2012-05-312-2/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=676897
* all: fix GCC pointer signedness warningsCosimo Cecchi2012-05-3115-30/+30
| | | | New cycle, new set of warnings triggered by glibc/GCC.
* Updated POTFILES.inPiotr Drąg2012-05-311-2/+0
|
* Remove tree side barWilliam Jon McCann2012-05-3114-3952/+22
| | | | | | | | It is inconsistent with the file chooser, doesn't work well with touch, is really hard to use, and isn't consistent with any other GNOME 3 apps. https://bugzilla.gnome.org/show_bug.cgi?id=676897
* Updated Spanish translationDaniel Mustieles2012-05-311-3/+3
|
* Updated Spanish translationDaniel Mustieles2012-05-311-15/+2
|
* Updated Spanish translationDaniel Mustieles2012-05-311-173/+152
|
* trivial: remove other ChangeLog filesCosimo Cecchi2012-05-302-24186/+0
|
* trivial: remove old perl scripts and other cruftCosimo Cecchi2012-05-3015-1240/+1
| | | | Most of these don't work, and I don't think anybody uses them.
* trivial: remove old ChangeLog filesCosimo Cecchi2012-05-309-140218/+0
| | | | | These can be retrieved using the git history - it's not worth keeping them in the toplevel directory anymore.
* all: add some missing config.h includesCosimo Cecchi2012-05-306-1/+12
|
* ui: remove markup from GtkBuilder XMLClaude Paroz2012-05-302-32/+64
| | | | | | | | Use the <attributes> tag of GtkLabel instead. This will help translators, as they won't need to replicate the markup in the translated versions of those strings. https://bugzilla.gnome.org/show_bug.cgi?id=100252
* Updated Norwegian bokmål translationKjartan Maraas2012-05-301-930/+722
|
* window: misc cleanupsCosimo Cecchi2012-05-304-17/+5
|
* window: remove unneeded hackCosimo Cecchi2012-05-301-6/+0
| | | | The notebook is packed as expand, and this was only needed for panes.
* Updated Galician translationsFran Diéguez2012-05-301-1014/+993
|
* window-slot: simplify codeCosimo Cecchi2012-05-303-11/+3
| | | | | Use gtk_widget_get_visible() instead of an additional member for NautilusWindowSlot, since it's a widget now.
* window: always use directory name as titleCosimo Cecchi2012-05-301-12/+1
| | | | We don't have a spatial/browser distinction anymore.
* window: misc cleanupsCosimo Cecchi2012-05-304-22/+3
|
* window: remove unused code for Extra viewerCosimo Cecchi2012-05-303-88/+0
| | | | Extra views have not existed for ages.