From 589becbc79c7a96144298d75b3abd37f6dc97ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 8 Jun 2014 21:18:49 +0200 Subject: [PATCH] panelMenu: Clean up code a bit --- js/ui/panelMenu.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/js/ui/panelMenu.js b/js/ui/panelMenu.js index 9bb1f1bc4..07494d181 100644 --- a/js/ui/panelMenu.js +++ b/js/ui/panelMenu.js @@ -41,8 +41,7 @@ const ButtonBox = new Lang.Class({ }, _getPreferredWidth: function(actor, forHeight, alloc) { - let children = actor.get_children(); - let child = children.length > 0 ? children[0] : null; + let child = actor.get_first_child(); if (child) { [alloc.min_size, alloc.natural_size] = child.get_preferred_width(-1); @@ -55,8 +54,7 @@ const ButtonBox = new Lang.Class({ }, _getPreferredHeight: function(actor, forWidth, alloc) { - let children = actor.get_children(); - let child = children.length > 0 ? children[0] : null; + let child = actor.get_first_child(); if (child) { [alloc.min_size, alloc.natural_size] = child.get_preferred_height(-1); @@ -66,13 +64,11 @@ const ButtonBox = new Lang.Class({ }, _allocate: function(actor, box, flags) { - let children = actor.get_children(); - if (children.length == 0) + let child = actor.get_first_child(); + if (!child) return; - let child = children[0]; let [minWidth, natWidth] = child.get_preferred_width(-1); - let [minHeight, natHeight] = child.get_preferred_height(-1); let availWidth = box.x2 - box.x1; let availHeight = box.y2 - box.y1;