[gnome-documents] search-provider: use a fixed icon size for search results
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-documents] search-provider: use a fixed icon size for search results
- Date: Mon, 12 Mar 2012 20:18:02 +0000 (UTC)
commit e2916d1e9022ee3dc4d1885294c7891deb998701
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Mon Mar 12 00:16:01 2012 -0400
search-provider: use a fixed icon size for search results
For now let's use 128.
src/shellSearchProvider.js | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/src/shellSearchProvider.js b/src/shellSearchProvider.js
index 59da519..54ab0d2 100644
--- a/src/shellSearchProvider.js
+++ b/src/shellSearchProvider.js
@@ -52,6 +52,8 @@ const SEARCH_PROVIDER_IFACE = 'org.gnome.Shell.SearchProvider';
const SEARCH_PROVIDER_NAME = 'org.gnome.Documents.SearchProvider';
const SEARCH_PROVIDER_PATH = '/org/gnome/Documents/SearchProvider';
+const _SHELL_SEARCH_ICON_SIZE = 128;
+
const SearchProviderIface = <interface name={SEARCH_PROVIDER_IFACE}>
<method name="GetInitialResultSet">
<arg type="as" direction="in" />
@@ -248,7 +250,7 @@ ShellSearchProvider.prototype = {
let theme = Gtk.IconTheme.get_default();
let flags = Gtk.IconLookupFlags.FORCE_SIZE |
Gtk.IconLookupFlags.GENERIC_FALLBACK;
- let info = theme.lookup_by_gicon(icon, Utils.getIconSize(),
+ let info = theme.lookup_by_gicon(icon, _SHELL_SEARCH_ICON_SIZE,
flags);
try {
@@ -259,7 +261,7 @@ ShellSearchProvider.prototype = {
}
} else if (icon instanceof Gio.FileIcon) {
try {
- let stream = icon.load(Utils.getIconSize(), null)[0];
+ let stream = icon.load(_SHELL_SEARCH_ICON_SIZE, null)[0];
let pixbuf = GdkPixbuf.Pixbuf.new_from_stream(stream,
null);
pixbufs.push(pixbuf);
@@ -268,7 +270,7 @@ ShellSearchProvider.prototype = {
}
}
}));
- return Gd.create_collection_icon(Utils.getIconSize(), pixbufs);
+ return Gd.create_collection_icon(_SHELL_SEARCH_ICON_SIZE, pixbufs);
},
_doSearch: function(terms) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]