fix: Don't show provider as Read Only if it's empty
This commit is contained in:
parent
ec4fdc44ef
commit
1b43270ae9
@ -131,7 +131,7 @@ namespace hex {
|
||||
if (provider->isDirty())
|
||||
postfix += " (*)";
|
||||
|
||||
if (!provider->isWritable())
|
||||
if (!provider->isWritable() && provider->getActualSize() != 0)
|
||||
postfix += " (Read Only)";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user