Fixed #298: Could not edit Path textfields in Hard Drives panel

This commit is contained in:
Dimitris Panokostas 2019-10-26 21:29:18 +02:00
parent d7a9fb92ba
commit 6efd89f059
3 changed files with 0 additions and 3 deletions

View file

@ -137,7 +137,6 @@ static void InitCreateFilesysHardfile()
lblPath->setAlignment(gcn::Graphics::RIGHT);
txtPath = new gcn::TextField();
txtPath->setSize(500, TEXTFIELD_HEIGHT);
txtPath->setEnabled(false);
cmdPath = new gcn::Button("...");
cmdPath->setSize(SMALL_BUTTON_WIDTH, SMALL_BUTTON_HEIGHT);

View file

@ -271,7 +271,6 @@ static void InitEditFilesysHardfile()
lblPath->setAlignment(gcn::Graphics::RIGHT);
txtPath = new gcn::TextField();
txtPath->setSize(500, TEXTFIELD_HEIGHT);
txtPath->setEnabled(false);
cmdPath = new gcn::Button("...");
cmdPath->setSize(SMALL_BUTTON_WIDTH, SMALL_BUTTON_HEIGHT);
cmdPath->setBaseColor(gui_baseCol);

View file

@ -131,7 +131,6 @@ static void InitEditFilesysVirtual()
lblPath->setAlignment(gcn::Graphics::RIGHT);
txtPath = new gcn::TextField();
txtPath->setSize(338, TEXTFIELD_HEIGHT);
txtPath->setEnabled(false);
cmdPath = new gcn::Button("...");
cmdPath->setSize(SMALL_BUTTON_WIDTH, SMALL_BUTTON_HEIGHT);
cmdPath->setBaseColor(gui_baseCol);