Here is an updated patch. Also here is a link for everyone to see what we could make Java tab look like:<div><br><div><a href="https://lh5.googleusercontent.com/-lzTcvXoWhOw/UBq_VGFqL2I/AAAAAAAAACc/TnxVpfV5WL0/s937/Advanced_Options.jpg">https://lh5.googleusercontent.com/-lzTcvXoWhOw/UBq_VGFqL2I/AAAAAAAAACc/TnxVpfV5WL0/s937/Advanced_Options.jpg</a></div>
<div><br></div><div>Notes:</div><div>1. Changed name to "Advanced"</div><div>2. Shrunk Java dialog box</div><div>3. Added bottom section for experimental features</div><div><br></div><div>This would clear up enough space in the general tab for me to move the measurement units over. </div>
<div><br></div><div>I've cc'ed the ux team since this is now a visual thing also. Please respond to the dev mailing list as I'll be pushing out a few patches corresponding to these changes.</div><div><br></div>
<div><br></div><div><br></div><div>Joel</div><div><br><div class="gmail_quote">On Thu, Aug 2, 2012 at 11:29 AM, Stefan Knorr <span dir="ltr"><<a href="mailto:heinzlesspam@gmail.com" target="_blank">heinzlesspam@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello there,<br>
<div class="im"><br>
On Thu, 2012-08-02 at 08:14 -0700, Joel Madero wrote:<br>
> Perfect idea! I'm going to go ahead and work on that. I will take out<br>
> "limited" (I have no clue what it means either, I figured someone else<br>
> must have known when they added it ;)).<br>
<br>
</div>Well, hopefully, I didn't sound overly assertive here.<br>
<div class="im"><br>
> I have a quick question though. What's the best way to modify a patch?<br>
> The only way I know how is to go back to dismiss my changes and start<br>
> from scratch. I'm sure there is a better way that I don't know of.<br>
<br>
</div>So, I am by no means the git expert here (I still barely understand the<br>
basics of it) but ... you probably still have the original patch<br>
committed locally, (and if not, you can do<br>
$ git am path/to.patch<br>
), so, do all the modifications you want to do, then do the usual<br>
$ git add .<br>
$ git commit<br>
At the end, you can just use<br>
$ git rebase -i HEAD~2<br>
to either squash (merge the commits and edit the commit message) or<br>
fixup (just merge the commits) (assuming you had only your original<br>
commit and the new one = HEAD~2).<br>
<br>
Also: Note that you should only ever use rebase -i on local commits –<br>
modifying the global commit history is evil. (It won't do any harm to<br>
everyone else, if you don't have commit access, but still.)<br>
<br>
Modifying the patch in a text editor can easily go wrong, so that's not<br>
recommended.<br>
<br>
Astron.<br>
<br>
</blockquote></div><br></div></div>