From 60ea68413aab8e643d9ce69b728695ade984ec0a Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Mon, 16 Jan 2017 22:36:45 +0100 Subject: [PATCH] Cosmetic changes to improve the layout of the preferences dialog. --- pd/nw/dialog_prefs.html | 8 +++++--- pd/nw/locales/de/translation.json | 4 ++-- pd/nw/pdgui.js | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pd/nw/dialog_prefs.html b/pd/nw/dialog_prefs.html index 2b46054aa..446c47588 100644 --- a/pd/nw/dialog_prefs.html +++ b/pd/nw/dialog_prefs.html @@ -300,7 +300,7 @@ <label data-i18n="[title]prefs.startup.paths_tt"> <span data-i18n="prefs.startup.paths"></span> </label> - <div style=" height:92px; width:300px; background:white; border: 1px solid #bbb; overflow-y:auto; overflow-x:auto; padding:0px;"> + <div style="height:21vh; width:89vw; background:white; border: 1px solid #bbb; overflow-y:auto; overflow-x:auto; padding:0px;"> <table id="startup_paths" style="width:100%; background:white;"> </table> </div> @@ -318,7 +318,7 @@ <label data-i18n="[title]prefs.startup.libs_tt"> <span data-i18n="prefs.startup.libs"></span> </label> - <div style=" height:92px; width:300px; background:white; border: 1px solid #bbb; overflow-y:auto; overflow-x:auto; padding:0px;"> + <div style="height:21vh; width:89vw; background:white; border: 1px solid #bbb; overflow-y:auto; overflow-x:auto; padding:0px;"> <table id="startup_libs" style="width:100%; background:white;"> </table> </div> @@ -335,9 +335,11 @@ </div> <label data-i18n="[title]prefs.startup.flags_tt"> <span data-i18n="prefs.startup.flags"></span> + <br/> <input type="text" id="startup_flags" - name="startup_flags"> + name="startup_flags" + style="width:89vw"> </label> </div> </div> diff --git a/pd/nw/locales/de/translation.json b/pd/nw/locales/de/translation.json index ee9ee8725..54e76840d 100644 --- a/pd/nw/locales/de/translation.json +++ b/pd/nw/locales/de/translation.json @@ -362,8 +362,8 @@ "midi_tt": "konfiguriere die MIDI-Geräte" }, "startup": { - "flags": "Optionen", - "flags_tt": "Startup-Optionen für den Programmaufruf; Neustart der Anwendung ist erforderlich, damit Änderungen wirksam werden", + "flags": "Startup-Flags", + "flags_tt": "Zusätzliche Optionen für den Programmaufruf; Neustart der Anwendung ist erforderlich, damit Änderungen wirksam werden", "libs": "Bibliotheken", "libs_tt": "External-Bibliotheken, die beim Programmstart zu laden sind; Neustart der Anwendung ist erforderlich, damit Änderungen wirksam werden", "paths": "Suchpfade", diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 7792ebe2f..59552e398 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -4432,7 +4432,7 @@ function gui_pd_dsp(state) { function open_prefs() { if (!dialogwin["prefs"]) { - create_window("prefs", "prefs", 300, 420, 0, 0, null); + create_window("prefs", "prefs", 350, 470, 0, 0, null); } } -- GitLab