Category label and entry to 12 chars (#324)

This commit is contained in:
Erwin Ried
2020-04-12 15:26:20 +02:00
committed by GitHub
parent c986108a66
commit d65a8929bc
2 changed files with 2 additions and 2 deletions

View File

@@ -259,7 +259,7 @@ void FrequencyManagerView::on_edit_desc(NavigationView& nav) {
} }
void FrequencyManagerView::on_new_category(NavigationView& nav) { void FrequencyManagerView::on_new_category(NavigationView& nav) {
text_prompt(nav, desc_buffer, 8, [this](std::string& buffer) { text_prompt(nav, desc_buffer, 12, [this](std::string& buffer) {
File freqman_file; File freqman_file;
create_freqman_file(buffer, freqman_file); create_freqman_file(buffer, freqman_file);
}); });

View File

@@ -64,7 +64,7 @@ protected:
OptionsField options_category { OptionsField options_category {
{ 9 * 8, 4 }, { 9 * 8, 4 },
8, 12,
{ } { }
}; };