gnome-shell r72 - trunk/js/ui
- From: walters svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-shell r72 - trunk/js/ui
- Date: Fri, 21 Nov 2008 15:08:34 +0000 (UTC)
Author: walters
Date: Fri Nov 21 15:08:34 2008
New Revision: 72
URL: http://svn.gnome.org/viewvc/gnome-shell?rev=72&view=rev
Log:
Rename MENU_ -> APPDISPLAY_ to correspond with other renames
Modified:
trunk/js/ui/appdisplay.js
Modified: trunk/js/ui/appdisplay.js
==============================================================================
--- trunk/js/ui/appdisplay.js (original)
+++ trunk/js/ui/appdisplay.js Fri Nov 21 15:08:34 2008
@@ -10,12 +10,12 @@
const Meta = imports.gi.Meta;
const Shell = imports.gi.Shell;
-const MENU_NAME_COLOR = new Clutter.Color();
-MENU_NAME_COLOR.from_pixel(0xffffffff);
-const MENU_COMMENT_COLOR = new Clutter.Color();
-MENU_COMMENT_COLOR.from_pixel(0xffffffbb);
-const MENU_BACKGROUND_COLOR = new Clutter.Color();
-MENU_BACKGROUND_COLOR.from_pixel(0x000000ff);
+const APPDISPLAY_NAME_COLOR = new Clutter.Color();
+APPDISPLAY_NAME_COLOR.from_pixel(0xffffffff);
+const APPDISPLAY_COMMENT_COLOR = new Clutter.Color();
+APPDISPLAY_COMMENT_COLOR.from_pixel(0xffffffbb);
+const APPDISPLAY_BACKGROUND_COLOR = new Clutter.Color();
+APPDISPLAY_BACKGROUND_COLOR.from_pixel(0x000000ff);
const APPDISPLAY_HEIGHT = 50;
const APPDISPLAY_PADDING = 4;
@@ -36,7 +36,7 @@
this._group = new Clutter.Group({reactive: true,
width: width,
height: APPDISPLAY_HEIGHT});
- this._bg = new Clutter.Rectangle({ color: MENU_BACKGROUND_COLOR,
+ this._bg = new Clutter.Rectangle({ color: APPDISPLAY_BACKGROUND_COLOR,
reactive: true });
this._group.add_actor(this._bg);
this._bg.connect('button-press-event', function(group, e) {
@@ -59,13 +59,13 @@
let comment = appinfo.get_description();
let text_width = width - me._icon.width + 4;
- this._name = new Clutter.Label({ color: MENU_NAME_COLOR,
+ this._name = new Clutter.Label({ color: APPDISPLAY_NAME_COLOR,
font_name: "Sans 14px",
width: text_width,
ellipsize: Pango.EllipsizeMode.END,
text: name});
this._group.add_actor(this._name);
- this._comment = new Clutter.Label({ color: MENU_COMMENT_COLOR,
+ this._comment = new Clutter.Label({ color: APPDISPLAY_COMMENT_COLOR,
font_name: "Sans 12px",
width: text_width,
ellipsize: Pango.EllipsizeMode.END,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]