fix label widths in map editor ('geoname' truncated in recent versions of Chrome on OS X)
This commit is contained in:
parent
e52ac44a1b
commit
d5da93f59e
1 changed files with 3 additions and 3 deletions
|
@ -486,7 +486,7 @@ Ox.MapEditor = function(options, self) {
|
||||||
self.$nameInput = Ox.Input({
|
self.$nameInput = Ox.Input({
|
||||||
id: 'name',
|
id: 'name',
|
||||||
label: 'Name',
|
label: 'Name',
|
||||||
labelWidth: 64,
|
labelWidth: 80,
|
||||||
width: 240
|
width: 240
|
||||||
}),
|
}),
|
||||||
self.$alternativeNamesInput = Ox.ArrayInput({
|
self.$alternativeNamesInput = Ox.ArrayInput({
|
||||||
|
@ -500,7 +500,7 @@ Ox.MapEditor = function(options, self) {
|
||||||
self.$geonameInput = Ox.Input({
|
self.$geonameInput = Ox.Input({
|
||||||
id: 'geoname',
|
id: 'geoname',
|
||||||
label: 'Geoname',
|
label: 'Geoname',
|
||||||
labelWidth: 64,
|
labelWidth: 80,
|
||||||
width: 240
|
width: 240
|
||||||
}),
|
}),
|
||||||
Ox.Input({
|
Ox.Input({
|
||||||
|
@ -518,7 +518,7 @@ Ox.MapEditor = function(options, self) {
|
||||||
{id: 'feature', title: 'Feature'} // continents, islands, rivers, lakes, seas, oceans, mountains...
|
{id: 'feature', title: 'Feature'} // continents, islands, rivers, lakes, seas, oceans, mountains...
|
||||||
],
|
],
|
||||||
label: 'Type',
|
label: 'Type',
|
||||||
labelWidth: 64,
|
labelWidth: 80,
|
||||||
width: 240
|
width: 240
|
||||||
})
|
})
|
||||||
], ['Latitude', 'Longitude', 'South', 'West', 'North', 'East'].map(function(v) {
|
], ['Latitude', 'Longitude', 'South', 'West', 'North', 'East'].map(function(v) {
|
||||||
|
|
Loading…
Reference in a new issue