mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
fix: Don't show provider as Read Only if it's empty
This commit is contained in:
@@ -131,7 +131,7 @@ namespace hex {
|
||||
if (provider->isDirty())
|
||||
postfix += " (*)";
|
||||
|
||||
if (!provider->isWritable())
|
||||
if (!provider->isWritable() && provider->getActualSize() != 0)
|
||||
postfix += " (Read Only)";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user