Skip to content

Commit

Permalink
[GUI] Increase character limit for settings strings
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonbane0 committed Jul 8, 2020
1 parent 8a8ef20 commit 6906792
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions GUI/src/app/pages/generator/generator.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h3>{{section.text}}</h3>
<p class="footerInputLabel">Settings String</p>
<!--Electron-->
<ng-container *ngIf="global.getGlobalVar('electronAvailable')">
<input class="footerInput" nbInput type="text" maxlength="260" fieldSize="small" [(ngModel)]="global.generator_settingsMap['settings_string']" (ngModelChange)="afterSettingChange(true)">
<input class="footerInput" nbInput type="text" maxlength="1000" fieldSize="small" [(ngModel)]="global.generator_settingsMap['settings_string']" (ngModelChange)="afterSettingChange(true)">
<button class="footerButton" nbButton status="info" size="small" (click)="copySettingsString()">Copy</button>
<button class="footerButton" nbButton status="info" size="small" (click)="importSettingsString()">Import</button>
<!--Padding-->
Expand All @@ -157,7 +157,7 @@ <h3>{{section.text}}</h3>
</ng-container>
<!--Web-->
<ng-container *ngIf="!global.getGlobalVar('electronAvailable')">
<input class="footerInputShort" nbInput type="text" maxlength="260" fieldSize="small" [(ngModel)]="global.generator_settingsMap['settings_string']" (ngModelChange)="afterSettingChange(true)">
<input class="footerInputShort" nbInput type="text" maxlength="1000" fieldSize="small" [(ngModel)]="global.generator_settingsMap['settings_string']" (ngModelChange)="afterSettingChange(true)">
<button class="footerButton" nbButton status="info" size="small" (click)="copySettingsString()">Copy</button>
<button class="footerButton" nbButton status="info" size="small" (click)="settingsBusy = true; getSettingsString()">Get</button>
<button class="footerButton" nbButton status="info" size="small" (click)="importSettingsString()">Import</button>
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.2.30 f.LUM'
__version__ = '5.2.31 f.LUM'

0 comments on commit 6906792

Please sign in to comment.