[the-board] [ui] Don't for upper case on Toolbar and ToolBox titles
- From: Lucas Rocha <lucasr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [the-board] [ui] Don't for upper case on Toolbar and ToolBox titles
- Date: Wed, 17 Nov 2010 00:24:31 +0000 (UTC)
commit 83eb767c0d755a28748773a02259f5a35aca0953
Author: Lucas Rocha <lucasr gnome org>
Date: Tue Nov 16 22:41:41 2010 +0000
[ui] Don't for upper case on Toolbar and ToolBox titles
src/js/ui/toolBox.js | 4 ++--
src/js/ui/toolbar.js | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/js/ui/toolBox.js b/src/js/ui/toolBox.js
index 202a344..a6bce71 100644
--- a/src/js/ui/toolBox.js
+++ b/src/js/ui/toolBox.js
@@ -70,7 +70,7 @@ ToolBox.prototype = {
name: "tool-box-title-box" });
this._titleLabel =
- new Mx.Label({ text: this._title.toUpperCase(),
+ new Mx.Label({ text: this._title,
name: "tool-box-title-label" });
this._titleBox.append(this._titleLabel,
@@ -126,7 +126,7 @@ ToolBox.prototype = {
addButton : function(args) {
let button =
- new Mx.Button({ label: args.label.toUpperCase(),
+ new Mx.Button({ label: args.label,
isToggle: this._isButtonGroup,
name: "tool-box-button" });
diff --git a/src/js/ui/toolbar.js b/src/js/ui/toolbar.js
index f11a818..307aa43 100644
--- a/src/js/ui/toolbar.js
+++ b/src/js/ui/toolbar.js
@@ -82,7 +82,7 @@ Toolbar.prototype = {
name: "toolbar-title-box" });
this._titleLabel =
- new Mx.Label({ text: title.toUpperCase(),
+ new Mx.Label({ text: title,
name: "toolbar-title-label" });
this._titleBox.append(this._titleLabel,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]