Skip to content

Commit

Permalink
pschedule: Bugfix: avoid vertical scrollbars (thanks to don570)
Browse files Browse the repository at this point in the history
  • Loading branch information
zigbert committed Dec 16, 2015
1 parent ec71f10 commit 649e6a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions woof-code/rootfs-packages/pschedule/usr/local/pschedule/func_new
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ new () {
<action>TASK=""; pschedule &</action>
<action>exit:EXIT</action>
</button>'
S=$S'<button space-expand="false" space-fill="false" image-position="2">'
S=$S'<button space-expand="false" space-fill="false" image-position="2" tooltip-text="'$(gettext 'Add these settings back to task list')'">'
[ -f /usr/share/pixmaps/puppy/clock_interval.svg ] && S=$S'<input file>/usr/share/pixmaps/puppy/clock_interval.svg</input>' || S=$S'<input file stock="gtk-add"></input>'
S=$S'<height>48</height>
<action type="exit">add</action>
Expand All @@ -84,7 +84,7 @@ new () {
<vbox space-expand="true" space-fill="true">
<frame '$(gettext 'Time')'>
<hbox space-expand="true" space-fill="true">
<table space-expand="true" space-fill="true">
<table hscrollbar-policy="2" space-expand="true" space-fill="true">
<width>80</width><height>200</height>
<label>'$(gettext 'Hour')'</label>
<variable>HOUR</variable>
Expand All @@ -93,7 +93,7 @@ new () {
<action>. '$PROGPATH'/func_cron_to_human -new -a</action>
<action>refresh:ENTRY_NEXT</action>
</table>
<table space-expand="true" space-fill="true">
<table hscrollbar-policy="2" space-expand="true" space-fill="true">
<width>80</width><height>100</height>
<label>'$(gettext 'Minute')'</label>
<variable>MINUTE</variable>
Expand All @@ -102,7 +102,7 @@ new () {
<action>. '$PROGPATH'/func_cron_to_human -new -a</action>
<action>refresh:ENTRY_NEXT</action>
</table>
<table space-expand="true" space-fill="true">
<table hscrollbar-policy="2" space-expand="true" space-fill="true">
<width>140</width><height>100</height>
<label>'$(gettext 'Day')'</label>
<variable>WEEKDAY</variable>
Expand All @@ -111,7 +111,7 @@ new () {
<action>. '$PROGPATH'/func_cron_to_human -new -a</action>
<action>refresh:ENTRY_NEXT</action>
</table>
<table space-expand="true" space-fill="true">
<table hscrollbar-policy="2" space-expand="true" space-fill="true">
<width>80</width><height>100</height>
<label>'$(gettext 'Date')'</label>
<variable>DAY</variable>
Expand All @@ -120,7 +120,7 @@ new () {
<action>. '$PROGPATH'/func_cron_to_human -new -a</action>
<action>refresh:ENTRY_NEXT</action>
</table>
<table space-expand="true" space-fill="true">
<table hscrollbar-policy="2" space-expand="true" space-fill="true">
<width>140</width><height>100</height>
<label>'$(gettext 'Month')'</label>
<variable>MONTH</variable>
Expand Down

0 comments on commit 649e6a4

Please sign in to comment.