【问题标题】:Aptana Studio 3 high resolution small iconsAptana Studio 3 高分辨率小图标
【发布时间】:2015-07-16 05:45:44
【问题描述】:

我正在使用分辨率为 3840 x 2160 的 aptana Studio 3。现在 Aptana Studio 中的图标非常小。有没有办法改变 Aptana Studio 中图标的大小?

【问题讨论】:

    标签: icons size aptana resolution


    【解决方案1】:

    由于 Aptana 真的是 Eclipse,我在这里找到了解决方案: Eclipse interface icons very small on high resolution screen in Windows 8.1 对我有用的解决方案引用了这个已解决的错误,可在此处找到: https://bugs.eclipse.org/bugs/show_bug.cgi?id=421383#c60

    唯一的区别是命名清单文件。而不是:eclipse.exe.manifest,将其命名为: AptanaStudio3.exe.manifest

    我会重复他们所说的:

    1) 告诉 Windows 忽略应用程序中的设置(即 显然是错误的,因为 UI 不可用)如果“清单”文件是 可用的。打开注册表编辑器并创建以下 DWORD 注册表项:使 Windows 能够通过以下方式确定外部清单的优先级 创建和设置此注册表项(使用 regedit.exe) HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest (DWORD) 到 1

    2) 创建一个“清单”文件,告诉 Windows Evernote 未使用高 dpi 用户界面:创建文件 AptanaStudio3.exe.manifest 与附件的内容到此 错误“用于在高 DPI 显示器上解决此问题的清单文件”并放置 它与 AptanaStudio3.exe 位于同一文件夹中。

    现在这是您放入文件 AptanaStudio3.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">
    
    <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>
    

    我必须重新启动我的机器才能工作。

    【讨论】:

      【解决方案2】:

      我已将我的 linux 目录配置中使用 imagemagick 的所有图像放大到 32 像素。

      for im in (find -name \*.png -or -name \*.gif) do convert "$im" -resize 32x $im done
      

      【讨论】:

        【解决方案3】:

        我遇到了这个问题:

        如果您的操作系统支持(Windows 10),您可以尝试以下方法:

        右键单击应用程序并选择“属性” > 选择“兼容性”选项卡 > 选中复选框“覆盖高 DPI 缩放行为。缩放执行者:” > 从下拉列表中选择“系统”。

        如果“系统”选项不起作用,请尝试选择“系统(增强)”。

        希望这会有所帮助!

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 1970-01-01
          • 2011-06-16
          • 1970-01-01
          • 1970-01-01
          • 2011-04-07
          • 2014-11-20
          • 2017-11-26
          • 1970-01-01
          相关资源
          最近更新 更多