Actions
バグ #3597
closedWindows10の高解像度モードで実行するとアイコンが非常に小さくなる
Status:
終了
Priority:
通常
Assignee:
-
Target version:
-
Start date:
09/05/2016
Due date:
% Done:
100%
Estimated time:
Description
Windows10の高解像度モードで実行するとアイコンが非常に小さくなる。
Eclipse全般で問題となっている現象。
Files
Actions
#1
Updated by n-ando about 8 years ago
- File OpenRTP_normal.png OpenRTP_normal.png added
- File OpenRTP_small.png OpenRTP_small.png added
- File admin_copy.png admin_copy.png added
Updated by n-ando about 8 years ago
- % Done changed from 0 to 80
対処方法¶
Stackoverflow にて対処方法が示されていた。
- レジストリに以下のキーを追加する
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest = (DWORD) 1
- <exeファイル名>.exe.manifest というファイル名で以下のファイルをexeと同じディレクトリに置く
- eclipse.exe.manifest
- RTSystemEditorRCP.exe.manifest
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"> </assemblyIdentity> </dependentAssembly> </dependency> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" processorArchitecture="amd64" publicKeyToken="1fc8b3b9a1e18e3b"> </assemblyIdentity> </dependentAssembly> </dependency> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="asInvoker" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> <asmv3:application> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
これで、正しいサイズで表示される。
なお、解決策の中に、以下のXMLを使用するというものもあったが、RCPではエラーとなる。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> <description>eclipse</description> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges> <requestedExecutionLevel xmlns:ms_asmv3="urn:schemas-microsoft-com:asm.v3" level="asInvoker" ms_asmv3:uiAccess="false"> </requestedExecutionLevel> </requestedPrivileges> </security> </trustInfo> <asmv3:application> <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware> </asmv3:windowsSettings> </asmv3:application> </assembly>
Actions
#3
Updated by n-ando about 8 years ago
- File eclipse.exe.manifest eclipse.exe.manifest added
- File RTSystemEditorRCP.exe.manifest RTSystemEditorRCP.exe.manifest added
Updated by n-ando about 8 years ago
なお、別の方法として、exeの 「プロパティ」→「互換性」からWindowsXPモードで実行することで上記の不具合を避ける方法があるが、OpenRTM-aistでインストールされるeclipseやRCPのexeはバッチファイルから起動されるため、一般ユーザはこの方法は利用できない。(管理者権限で実行すると一応実行は可能。)
Actions
#5
Updated by n-ando about 8 years ago
- File ExternalManifestON.reg ExternalManifestON.reg added
- File ExternalManifestOFF.reg ExternalManifestOFF.reg added
レジストリに値を追加するためのregファイルを作成
Updated by n-ando about 8 years ago
- % Done changed from 80 to 100
Actions