Error opening OnlyOffice installed with rpm in toolbox

Opening OnlyOffice(with /usr/bin/desktopeditors) from the command line inside the toolbox opens the app and generates this code:
(DesktopEditors:58004): Gtk-WARNING **: 20:55:52.455: gtk_disable_setlocale() must be called before gtk_init()
Then when using OnlyOffice, it starts giving these line of code repeatedly with higher sequence each time, and it doesn’t let me use the command line until I close the app:

QXcbConnection: XCB error: 8 (BadMatch), sequence: 761, resource id: 25165887, major code: 130 (Unknown), minor code: 3
QXcbConnection: XCB error: 8 (BadMatch), sequence: 777, resource id: 25165887, major code: 130 (Unknown), minor code: 3
QXcbConnection: XCB error: 8 (BadMatch), sequence: 964, resource id: 25165887, major code: 130 (Unknown), minor code: 3
QXcbConnection: XCB error: 8 (BadMatch), sequence: 1190, resource id: 25165887, major code: 130 (Unknown), minor code: 3

So how could I solve this error?

This may be an error with the RPM package, file a bug on Bugzilla against that package

The Flatpak works fine

1 Like

You can get around this a few different ways…
run it:
in the background
/usr/bin/desktopeditors &

Note this doesn’t get rid of the errors you just won’t see them
in the background with stdout/err going to dev null so you don’t get the errors
/usr/bin/desktopeditors >/dev/null 2>&1 &

in a subshell in the background
(/usr/bin/desktopeditors) &

You may want to look upstream for the other issues, Issues · ONLYOFFICE/DesktopEditors · GitHub

2 Likes