Fix Window growing
All checks were successful
Sanity check / Test Python file (push) Successful in 14s
All checks were successful
Sanity check / Test Python file (push) Successful in 14s
This commit is contained in:
parent
f8fe0a55e4
commit
1b656964a7
1 changed files with 12 additions and 3 deletions
|
@ -24,6 +24,8 @@ you want to encode or decode.</property>
|
|||
<object class="GtkWindow" id="window">
|
||||
<property name="can-focus">False</property>
|
||||
<property name="title" translatable="yes">SweeCrypt GTK</property>
|
||||
<property name="default-width">250</property>
|
||||
<property name="default-height">128</property>
|
||||
<property name="icon-name">sweecrypt</property>
|
||||
<signal name="destroy" handler="on_window_destroy" swapped="no"/>
|
||||
<child>
|
||||
|
@ -32,11 +34,18 @@ you want to encode or decode.</property>
|
|||
<property name="can-focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<child>
|
||||
<object class="GtkTextView" id="input">
|
||||
<object class="GtkScrolledWindow">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="buffer">text</property>
|
||||
<property name="monospace">True</property>
|
||||
<property name="shadow-type">in</property>
|
||||
<child>
|
||||
<object class="GtkTextView" id="input">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="buffer">text</property>
|
||||
<property name="monospace">True</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
|
|
Loading…
Reference in a new issue