GUI saved in position ?

 From:  Michael Gibson
7580.8 In reply to 7580.7 
Hi Lewis, yes that browser pane is a fixed width currently. I do want to make some easy way to size it in the future.

But currently it is possible to modify it by editing the width in the UI definition.

To do that you need to open up the file named BrowserPane.htm in a text editor. The file is in the UI sub-folder, which on Windows you'll find here: C:\Program Files (x86)\MoI 3.0\ui and on Mac right-click the app icon and pick "Show package contents" and in there go to drive_c/moi/ui

Once you open the BrowserPane.htm file, the width is controlled by the 6th line from the top, the one that says width:15em; , I have marked it with >>> <<< here:

code:
<html>
    <head>
        <style>
            body {
                padding:0.3em 0.2em 0.5em 0.3em;
>>>>>>          width:15em;            <<<<<<<<<<


The 15em means a width of 15 characters. Change that to something like 25em or however many characters you want and that will widen the pane.

Hope that helps!

- Michael