Answers:
对于Unity-2D,这是使用/apps/metacity/general/mouse_button_modifier
GConf键控制的。要禁用Alt + Click拖动,请运行
gconftool-2 --set /apps/metacity/general/mouse_button_modifier --type string disabled
要重新启用它,请运行
gconftool-2 --set /apps/metacity/general/mouse_button_modifier --type string '<Alt>'
请注意,此GConf键可控制多个鼠标快捷键:
注意:以这种方式禁用修饰符会导致在没有按下修饰键的情况下导致Alt + Drag行为(每个拖动的行为都类似于Alt + Drag)将修饰符设置为“ <SUPER>”会使Super / Windows键成为修饰符。然后,应用程序可以使用Alt + Drag,而Super + Drag可以用于移动窗口。
gconftool-2 --set /apps/metacity/general/mouse_button_modifier --type string '<SUPER>'
适用于Unity 3D