diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b40bcb38d..5c2efeaed 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -4,7 +4,7 @@ - Adding in-app messages from Realm to the Greeting window. ([#1056](https://github.com/realm/realm-studio/pull/1056)) ## Fixed -- None +- Fixed text rendering issue resulting in clipping of property name and types in the header of the browser window. It was only observed on Windows with high pixel density displays. ([#1059](https://github.com/realm/realm-studio/pull/1059), since v1.0.0) ## Internals - Fixed the Dockerfile used when testing PRs. ([#1057](https://github.com/realm/realm-studio/pull/1057)) diff --git a/src/ui/RealmBrowser/RealmBrowser.scss b/src/ui/RealmBrowser/RealmBrowser.scss index adfe28ba3..f71d1a44f 100644 --- a/src/ui/RealmBrowser/RealmBrowser.scss +++ b/src/ui/RealmBrowser/RealmBrowser.scss @@ -175,7 +175,7 @@ display: flex; flex-direction: column; justify-content: center; - line-height: 1rem; + line-height: 1.2rem; overflow: hidden; text-overflow: ellipsis; }