diff options
author | Valerio Virgillito | 2012-07-18 16:00:01 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-07-18 16:00:01 -0700 |
commit | 6f2e455a77179f81dfd19037c078c158d3e14ee2 (patch) | |
tree | ba0125024a9688a3cbaac45e0124df934d5509f4 | |
parent | fc09eeb4bbc4e1e9c0e63a8e5959271ca7a3a59b (diff) | |
download | ninja-6f2e455a77179f81dfd19037c078c158d3e14ee2.tar.gz |
fixed highlight of file icons and grid menu
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
-rwxr-xr-x | js/components/ui/icon-list-basic/iconsList.reel/iconsList.css | 4 | ||||
-rw-r--r-- | js/ui/menu/menu-controller.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css index bb6d8b98..18486772 100755 --- a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css +++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.css | |||
@@ -29,6 +29,6 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |||
29 | POSSIBILITY OF SUCH DAMAGE. | 29 | POSSIBILITY OF SUCH DAMAGE. |
30 | </copyright> */ | 30 | </copyright> */ |
31 | 31 | ||
32 | .list{ | 32 | .list .selected { |
33 | 33 | background-color: #7F7F7F; | |
34 | } | 34 | } |
diff --git a/js/ui/menu/menu-controller.js b/js/ui/menu/menu-controller.js index d93e96bd..c80745f4 100644 --- a/js/ui/menu/menu-controller.js +++ b/js/ui/menu/menu-controller.js | |||
@@ -151,7 +151,7 @@ exports.MenuController = Montage.create(Component, { | |||
151 | handlegrid: { | 151 | handlegrid: { |
152 | value: function(value) { | 152 | value: function(value) { |
153 | this.topLevelMenu[2].entries[5].checked = !this.topLevelMenu[2].entries[5].checked; | 153 | this.topLevelMenu[2].entries[5].checked = !this.topLevelMenu[2].entries[5].checked; |
154 | document.application.model.show3dGrid = this.topLevelMenu[2].entries[4].checked; | 154 | document.application.model.show3dGrid = this.topLevelMenu[2].entries[5].checked; |
155 | } | 155 | } |
156 | }, | 156 | }, |
157 | 157 | ||