How to set a large window in TC when viewing a BIG thumbnail?

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

How to set a large window in TC when viewing a BIG thumbnail?

Post by *makinero »

How to set a large window in TC when viewing a BIG thumbnail, like Explorer.
User avatar
tuska
Power Member
Power Member
Posts: 4115
Joined: 2007-05-21, 12:17 UTC

Re: How to set a large window in TC when viewing a BIG thumbnail?

Post by *tuska »

makinero wrote: 2018-12-27, 16:38 UTC How to set a large window in TC ...
Maximize/restore TC - F11  (AHK-script)
viewtopic.php?t=50278

Button with command
ON: cm_VerticalPanels,cm_100Percent
OFF: cm_VerticalPanels,cm_50Percent
User avatar
tuska
Power Member
Power Member
Posts: 4115
Joined: 2007-05-21, 12:17 UTC

Re: How to set a large window in TC when viewing a BIG thumbnail?

Post by *tuska »

In addition, program elements can be switched on or off via a menu item in TC as follows.
In the file WCMD_ENG.MNU I inserted the following after "STARTMENU":
(Source: viewtopic.php?f=2&t=50763 (german thread))

Code: Select all

POPUP "&Program elements"
MENUITEM SEPARATOR
MENUITEM "Show/hide button bar", cm_VisButtonbar
MENUITEM "Show/hide vertical button bar", cm_VisButtonbar2
MENUITEM "Show/hide drive button bars", cm_VisDriveButtons
MENUITEM "Show/hide two drive bars", cm_VisTwoDriveButtons
MENUITEM "Show/hide drive combobox", cm_VisDriveCombo
MENUITEM "Buttons: Flat/normal mode", cm_VisFlatDriveButtons
MENUITEM "Show/hide two drive bars", cm_VisTwoDriveButtons
MENUITEM "Interface: Flat/normal mode", cm_VisFlatInterface
MENUITEM "Show/hide current directory", cm_VisCurDir
MENUITEM "Show/hide dir history+hotlist", cm_VisHistHotButtons
MENUITEM "Show/hide tab header (sorting)", cm_VisTabHeader
MENUITEM "Show/hide status bar", cm_VisStatusbar
MENUITEM "Show/hide Command line", cm_VisCmdLine
MENUITEM "Show/hide function key buttons", cm_VisKeyButtons
MENUITEM "Show/hide Breadcrumb bar", cm_VisBreadCrumbs
MENUITEM "Switch icon overlays on/off", cm_SwitchOverlayIcons
MENUITEM "Show/hide folder tabs", cm_VisDirTabs
MENUITEM SEPARATOR
END_POPUP
This allows the contents of the window to be enlarged again.

It is recommended that you create a backup of the WCMD_ENG.MNU file immediately, as the above entries
must be re-entered after a TC update/upgrade.
Post Reply