**** BEGIN LOGGING AT Sat Mar 10 02:59:58 2012 Mar 10 03:54:49 hmm. i might have an idea to crack the voip nut Mar 10 03:56:17 of course now that i've figured out how to get actual audio data, that doesn't mean i have any idea how to get that into a voip system Mar 10 03:56:22 but it's a step Mar 10 10:36:55 wow. ymmv, but i just applied Rustyapps mod for Enyo 1.0 to all my copies of Enyo, and scroll speed and smoothness is -insane- except in GVoice on webOS, where it lags a little now where it didn't before. everything else is amazing. Mar 10 19:58:57 Hey guys, I just doctored my TP and for some reason I can't sign into WebOS, it wakes about 5 minutes then says "We were unable to sign you in" Mar 10 19:59:23 Is there a fix for that? Mar 10 20:23:31 Have a question about Enyo 1. I want controls to be displayed from top-to-bottom. I've got a button as well, and I don't want it to take all the available width, so it's just as wide as necessary. Any suggestions how to achieve that? Mar 10 20:25:55 I...umm....what? Mar 10 20:29:48 sugardave: screenshot: http://img6.imagebanana.com/img/o0hdk5id/beta_20121003_212654.png I want the "Back" button's width to be as small as possible Mar 10 20:30:58 hmmm, first two things I would try: set flex: 0 on the button or wrap it in an HFlexBox and set flex: 0 on the button Mar 10 20:35:36 pc-world: it's the wrapped in HFlexBox, flex: 0 on the button method that works Mar 10 20:35:38 or you could call it a toolbutton. i believe those are as small as possible by default Mar 10 20:36:17 ugh. i need a nap. Mar 10 20:36:24 fxspec06: only if it's in a toolbar, I think Mar 10 20:36:36 it behaved the same as button just now when I tested it Mar 10 20:37:05 flex: 0 doesn't work Mar 10 20:37:21 I put the button in a kind with HLayout, seems to have worked. Though would be better if you didn't need to put the button in another component Mar 10 20:37:23 pc-world: did you put it inside an HFlexBox, that does work Mar 10 20:37:50 pc-world: then you'd need to calculate what width you want based on the caption width somehow and set it manually Mar 10 20:38:00 sugardave: Yeah I'm using a HFlexLayout Mar 10 20:38:04 si Mar 10 20:42:40 that's my code now, which does work as expected: Mar 10 20:42:40 {layoutKind: "VFlexLayout", components: [ Mar 10 20:42:40 {layoutKind: "HLayout", components: [{kind: "Button"}]}, Mar 10 20:42:40 {content: "test"}]} Mar 10 20:42:40 At least better than calculating the width manually Mar 10 20:43:21 (HLayout doesn't use the CSS flexible box model, it just sets "display: inline" for all divs) Mar 10 20:45:26 fxspec06: ToolButton doesn't work either (outside a Toolbar) Mar 10 20:49:57 got it working with just VFlexLayout, by setting the align property to "start": Mar 10 20:49:58 {layoutKind: "VFlexLayout", align: "start", Mar 10 20:49:58 components: [{kind: "Button"}, {content: "test"}] Mar 10 20:49:58 } **** ENDING LOGGING AT Sun Mar 11 02:59:58 2012