diff --git a/files/ZAZLaTex2SVG_v0.2.0.oxt b/files/ZAZLaTex2SVG_v0.2.0.oxt index 68ed380..9010cbf 100644 Binary files a/files/ZAZLaTex2SVG_v0.2.0.oxt and b/files/ZAZLaTex2SVG_v0.2.0.oxt differ diff --git a/source/images/close.svg b/source/images/close.svg new file mode 100644 index 0000000..8b7bc47 --- /dev/null +++ b/source/images/close.svg @@ -0,0 +1,52 @@ + + + + + + image/svg+xml + + 9.4 + + + + + 9.4 + Created with Sketch. + + + + + + + + diff --git a/source/images/insert.svg b/source/images/insert.svg new file mode 100644 index 0000000..21d461b --- /dev/null +++ b/source/images/insert.svg @@ -0,0 +1,87 @@ + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/images/preview.svg b/source/images/preview.svg new file mode 100644 index 0000000..8c4e378 --- /dev/null +++ b/source/images/preview.svg @@ -0,0 +1,113 @@ + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/pythonpath/main.py b/source/pythonpath/main.py index 2bf31b1..9991057 100644 --- a/source/pythonpath/main.py +++ b/source/pythonpath/main.py @@ -132,7 +132,7 @@ def _create_dialog(): 'Name': 'dialog', 'Title': TITLE, 'Width': 270, - 'Height': 250, + 'Height': 260, } dlg = app.create_dialog(args) dlg.id = ID_EXTENSION @@ -165,8 +165,8 @@ def _create_dialog(): 'Name': 'cmd_preview', 'Label': _('Preview'), 'Width': 70, - 'Height': 15, - 'ImageURL': 'view.png', + 'Height': 20, + 'ImageURL': 'preview.svg', 'ImagePosition': 1, } dlg.add_control(args) @@ -184,8 +184,8 @@ def _create_dialog(): 'Name': 'cmd_insert', 'Label': _('Insert'), 'Width': 70, - 'Height': 15, - 'ImageURL': 'insert.png', + 'Height': 20, + 'ImageURL': 'insert.svg', 'ImagePosition': 1, } dlg.add_control(args) @@ -194,8 +194,8 @@ def _create_dialog(): 'Name': 'cmd_close', 'Label': _('Close'), 'Width': 70, - 'Height': 15, - 'ImageURL': 'close.png', + 'Height': 20, + 'ImageURL': 'close.svg', 'ImagePosition': 1, } dlg.add_control(args)