Explorer tabs have now 70% of layout height, while logging area is 30%

This commit is contained in:
ChristianVisintin 2020-12-14 09:14:23 +01:00
parent d94c331569
commit 99a3b64833
2 changed files with 3 additions and 2 deletions

View file

@ -15,6 +15,7 @@ Released on 14/12/2020
- Enhancements:
- File explorer:
- Fixed color mismatch in local explorer
- Explorer tabs have now 70% of layout height, while logging area is 30%
- Bugfix:
- Fixed memory vulnerability in Windows version

View file

@ -56,8 +56,8 @@ impl FileTransferActivity {
.margin(1)
.constraints(
[
Constraint::Length(20), // Explorer
Constraint::Length(16), // Log
Constraint::Percentage(70), // Explorer
Constraint::Percentage(30), // Log
]
.as_ref(),
)