Changeset 99977 in vbox
- Timestamp:
- May 25, 2023 11:44:58 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r99620 r99977 83 83 int rc = VINF_SUCCESS; 84 84 85 if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_X11) 85 if ( VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_X11 86 /* If Wayland w/ X fallback support is installed (also called XWayland), prefer using the X clipboard for now. */ 87 || VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_XWAYLAND) 86 88 { 87 89 rc = VBClX11ClipboardInit(); … … 94 96 } 95 97 } 96 #if 0 97 else (VBClGetSessionType() == GHDISPLAYSERVERTYPE_WAYLAND) 98 else if (VBClGetDisplayServerType() == VBGHDISPLAYSERVERTYPE_WAYLAND) 98 99 { 99 100 VBClLogError("Shared Clipboard for Wayland not supported yet!\n"); 100 101 } 101 #endif102 102 103 103 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.

