Skip to content

Commit 7d27ea4

Browse files
committed
MyFrameMain: shorten About dialog
- remove wxWidgets version, not really interesting to the user - shorten VNC security type - remove supported encodings, already in the Setings dialog Result is a more natural looking MacOS About dialog without the scrollbars.
1 parent b91aff5 commit 7d27ea4

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

src/gui/MyFrameMain.cpp

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2430,26 +2430,14 @@ void MyFrameMain::help_about(wxCommandEvent &event)
24302430
wxString desc = "\n";
24312431
desc += _("MultiVNC is a cross-platform SSH-enabled VNC client.");
24322432
desc += "\n\n";
2433-
desc += _("Built with") + " " + (wxString() << wxVERSION_STRING);
2434-
desc += "\n\n";
24352433
desc += _("Supported Security Types:");
2436-
desc += "\n";
2437-
desc += _("VNC Authentication");
2434+
desc += " ";
2435+
desc += "VNC";
24382436
#if defined LIBVNCSERVER_HAVE_GNUTLS || defined LIBVNCSERVER_HAVE_LIBSSL
2439-
desc += wxT(", Anonymous TLS, VeNCrypt");
2437+
desc += ", AnonTLS, VeNCrypt";
24402438
#endif
24412439
#if defined LIBVNCSERVER_HAVE_LIBGCRYPT || defined LIBVNCSERVER_HAVE_LIBSSL
24422440
desc += wxT(", Apple Remote Desktop");
2443-
#endif
2444-
desc += "\n\n";
2445-
desc += _("Supported Encodings:");
2446-
desc += "\n";
2447-
desc += wxT("Raw, RRE, coRRE, CopyRect, Hextile, Ultra");
2448-
#ifdef LIBVNCSERVER_HAVE_LIBZ
2449-
desc += wxT(", UltraZip, Zlib, ZlibHex, ZRLE, ZYWRLE");
2450-
#ifdef LIBVNCSERVER_HAVE_LIBJPEG
2451-
desc += wxT(", Tight");
2452-
#endif
24532441
#endif
24542442

24552443
#ifndef __WXMAC__

0 commit comments

Comments
 (0)