Overview
| Comment: | [tb] attempt to fix windows height, but it’s broken… |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tb | tbnext |
| Files: | files | file ages | folders |
| SHA3-256: |
fb01f0170db8c7856c6d743a6bf832da |
| User & Date: | olr on 2018-04-11 14:04:49 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-04-11
| ||
| 16:02 | [tb] update: another day in the endless JS pile of shit check-in: ebe0fa1663 user: olr tags: tb, tbnext | |
| 14:04 | [tb] attempt to fix windows height, but it’s broken… check-in: fb01f0170d user: olr tags: tb, tbnext | |
| 13:18 | [tb] fix dialogheaders check-in: 8705474045 user: olr tags: tb, tbnext | |
Changes
Modified gc_lang/fr/tb/content/about.xul from [9407ba6c78] to [f0d3116bf2].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://grammarchecker/content/about.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/about.dtd">
<dialog
id="grammalecte-about-window"
title="&windowtitle;"
orient="vertical"
buttons="accept"
width="300"
onload="document.getElementById('grammalecte-about-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<description style="text-align: center;">
<image src="chrome://grammarchecker/skin/logo120_text.png" />
</description>
| > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://grammarchecker/content/about.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/about.dtd">
<dialog
id="grammalecte-about-window"
title="&windowtitle;"
orient="vertical"
buttons="accept"
width="300"
height="660"
onload="document.getElementById('grammalecte-about-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<description style="text-align: center;">
<image src="chrome://grammarchecker/skin/logo120_text.png" />
</description>
|
| ︙ | ︙ |
Modified gc_lang/fr/tb/content/conjugueur.xul from [a9e15bac00] to [9ec6ffe985].
1 2 3 4 5 6 7 8 | <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xml-stylesheet href="chrome://grammarchecker/content/conjugueur.css" type="text/css"?> <dialog id="grammalecte-conjugueur-window" title="Grammalecte · Conjugueur…" orient="vertical" | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xml-stylesheet href="chrome://grammarchecker/content/conjugueur.css" type="text/css"?> <dialog id="grammalecte-conjugueur-window" title="Grammalecte · Conjugueur…" orient="vertical" width="580" height="860" buttons="extra1" buttonlabelextra1="Conjuguer" ondialogextra1="oConj.getVerbAndConjugate();" defaultButton="extra1" onload="" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
| ︙ | ︙ |
Modified gc_lang/fr/tb/content/gc_options.xul from [65926a1200] to [94eab1cdbb].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
buttons="accept, cancel, extra1"
ondialogaccept="oOptControl.save();"
ondialogcancel="return;"
buttonlabelextra1="&defaultbutton.label;"
ondialogextra1="oOptControl.reset();"
defaultButton="accept"
width="400"
onload="document.getElementById('grammalecte-gcoptions-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description="" />
| > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
buttons="accept, cancel, extra1"
ondialogaccept="oOptControl.save();"
ondialogcancel="return;"
buttonlabelextra1="&defaultbutton.label;"
ondialogextra1="oOptControl.reset();"
defaultButton="accept"
width="400"
height="660"
onload="document.getElementById('grammalecte-gcoptions-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description="" />
|
| ︙ | ︙ |
Modified gc_lang/fr/tb/content/options.xul from [b4b7f2b7c3] to [8d98ebc654].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
title="&window.title;"
orient="vertical"
buttons="accept, cancel"
ondialogaccept="oOptControl.save();"
ondialogcancel="return;"
defaultButton="accept"
width="400"
onload="document.getElementById('grammalecte-options-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description="" />
| > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
title="&window.title;"
orient="vertical"
buttons="accept, cancel"
ondialogaccept="oOptControl.save();"
ondialogcancel="return;"
defaultButton="accept"
width="400"
height="280"
onload="document.getElementById('grammalecte-options-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description="" />
|
| ︙ | ︙ |
Modified gc_lang/fr/tb/content/spell_options.xul from [e6c1baec4c] to [5934b250e2].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 | id="grammalecte-spelloptions-window" title="&window.title;" orient="vertical" buttons="accept,cancel" ondialogaccept="oDialogControl.setDictionaries();" ondialogcancel="return;" width="400" | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | id="grammalecte-spelloptions-window" title="&window.title;" orient="vertical" buttons="accept,cancel" ondialogaccept="oDialogControl.setDictionaries();" ondialogcancel="return;" width="400" height="620" onload="oDialogControl.load();" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <!-- Other elements go here --> <dialogheader id="grammalecte-title" title="&dialogheader.label;" description=""/> |
| ︙ | ︙ |