I am pretty new to coding with Hollywood. I am developing a small application where I have two poppers, asking the user two different paths. That window opens after a button is pressed in the main window.
I am doing the development on a Linux x64 system, with the latest Gnome installed, and I am using RapaGUI 2.2 and Hollywood 9
Whenever I close the application, I get a segmentation fault in the terminal, although the fields are visible and working as expected. This happens even if I just start the application, withought opening the window that contains those fields.
I tried to use popfile and I have the same issue. The popfont and the popcolor though are working without giving me the segmentation fault on exit.
Here is the code of how I set them in the window
Code: Select all
<window title="wizard" id="wizardWin" notify="closerequest">
<vgroup frame="false" frametitle="">
<colgroup columns="2">
<label>Name</label>
<textentry id="vmName" notify="text"/>
<label>Choices</label>
<choice id="choice">
<item>choice 1</item>
<item>choice 2</item>
</choice>
<label>Path 1</label>
<vgroup>
<poppath id="save_path" title="Please select a drawer..." notify="path"/>
<label>Select the path 1</label>
</vgroup>
<label>Path 2</label>
<vgroup>
<poppath title="Please select a drawer..." notify="path"/>
<label>Select the path 2</label>
</vgroup>
</colgroup>
<hgroup frame="false">
<button id="createButton">Create</button>
<button id="cancelButton">Cancel</button>
</hgroup>
</vgroup>
</window>
Is this a know issue? Is this something that was fixed in the later version of Hollywood? Any idea how to fix it?