Fix URL view cutoff for long URLs (#1793)

This commit is contained in:
Devin Binnie
2021-10-06 16:32:27 -04:00
committed by GitHub
parent d1e5505bd4
commit 3527679648

View File

@@ -309,7 +309,7 @@ export class ViewManager {
urlView.setBounds({
x: 0,
y: boundaries.height - URL_VIEW_HEIGHT,
width: Math.floor(boundaries.width / 3),
width: boundaries.width,
height: URL_VIEW_HEIGHT,
});