Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
3eed24f6 by wurstsalat at 2023-12-01T21:39:24+01:00
fix: Windows: Use os.startfile with 'open' parameter

This is an attempt to fix file opening issues with msix installs

- - - - -
d75f5720 by wurstsalat at 2023-12-01T21:45:18+01:00
imprv: ChatBanner: Use better tooltip for chat details button

This fits both single and group chats

- - - - -


2 changed files:

- gajim/common/helpers.py
- gajim/data/gui/chat_banner.ui


Changes:

=====================================
gajim/common/helpers.py
=====================================
@@ -1108,7 +1108,7 @@ def open_file_uri(uri: str) -> None:
         if sys.platform != 'win32':
             Gio.AppInfo.launch_default_for_uri(uri)
         else:
-            os.startfile(uri)  # noqa: S606
+            os.startfile(uri, 'open')  # noqa: S606
     except Exception as err:
         log.info("Couldn't open file URI %s: %s", uri, err)
 


=====================================
gajim/data/gui/chat_banner.ui
=====================================
@@ -221,7 +221,7 @@
             <property name="visible">True</property>
             <property name="can-focus">True</property>
             <property name="receives-default">True</property>
-            <property name="tooltip-text" translatable="yes">Contact Details 
and Settings</property>
+            <property name="tooltip-text" translatable="yes">Chat Details and 
Settings</property>
             <property name="valign">center</property>
             <property name="action-name">win.show-contact-info</property>
             <child>



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/1a8da0265caa17353c47f376a8c93828fb2308f2...d75f5720aa25ae1e32e6ecdff116afd74ff62bad

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/1a8da0265caa17353c47f376a8c93828fb2308f2...d75f5720aa25ae1e32e6ecdff116afd74ff62bad
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to