Skip to content

Commit bdb5863

Browse files
committed
Changes max width of HTML popup view from 1500 to 1024
1 parent 4565f79 commit bdb5863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typescript/commands/quick_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def handle_quick_info(self, quick_info_resp_dict, display_point):
6666
self.template = Template(load_quickinfo_and_error_popup_template())
6767
text_parts = { "error": error_html, "info_str": escape_html(info_str), "doc_str": escape_html(doc_str) }
6868
html = self.template.substitute(text_parts)
69-
self.view.show_popup(html, flags=sublime.HIDE_ON_MOUSE_MOVE_AWAY, location=display_point, max_height=300, max_width=1500)
69+
self.view.show_popup(html, flags=sublime.HIDE_ON_MOUSE_MOVE_AWAY, location=display_point, max_height=300, max_width=1024)
7070

7171
def get_error_text_html(self, pt):
7272
client_info = cli.get_or_add_file(self.view.file_name())

0 commit comments

Comments
 (0)