From bdd9301c59f29c105762b6460d731438c670d705 Mon Sep 17 00:00:00 2001 From: miso11 <52132927+miso11@users.noreply.github.com> Date: Mon, 28 Oct 2019 19:36:15 +0100 Subject: [PATCH] make tooltip width wider (#239) Issue #191 It shouldn't be ellipsized, or at least it should be to the right, because I think it's more interesting the file name and function name than the system path where it is found. Make max width bigger Before: ![before](https://user-images.githubusercontent.com/52132927/67621727-ff6dda80-f812-11e9-8c10-533542fe0302.png) After: ![after](https://user-images.githubusercontent.com/52132927/67621730-04cb2500-f813-11e9-8d36-80e8c58a529e.png) --- src/views/style.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/style.ts b/src/views/style.ts index b2af356..c212689 100644 --- a/src/views/style.ts +++ b/src/views/style.ts @@ -27,7 +27,7 @@ export enum Colors { export enum Sizes { MINIMAP_HEIGHT = 100, DETAIL_VIEW_HEIGHT = 150, - TOOLTIP_WIDTH_MAX = 300, + TOOLTIP_WIDTH_MAX = 900, TOOLTIP_HEIGHT_MAX = 80, SEPARATOR_HEIGHT = 2, FRAME_HEIGHT = 20,