機能 #602 » 0001-TL.patch
core/mui/cairo_coordinate_module.rb | ||
---|---|---|
72 | 72 | |
73 | 73 |
# 寸法の初期化 |
74 | 74 |
def coordinator(width) |
75 |
@width, @color, @icon_width, @icon_height, @icon_margin = [width, 1].max, DEPTH, 48, 48, 2
|
|
75 |
@width, @color, @icon_width, @icon_height, @icon_margin = [width, 1].max, DEPTH, UserConfig[:tl_icon_size], UserConfig[:tl_icon_size], 2
|
|
76 | 76 |
end |
77 | 77 | |
78 | 78 |
# 座標系を構造体にまとめて返す |
core/plugin/set_view/set_view.rb | ||
---|---|---|
48 | 48 |
color _('選択中'), :mumble_selected_bg |
49 | 49 |
end |
50 | 50 | |
51 |
adjustment _('タイムラインのアイコンサイズ'), :tl_icon_size, 1, 100 |
|
52 | ||
51 | 53 |
settings(_('Mentions')) do |
52 | 54 |
boolean(_('リプライを返したつぶやきにはアイコンを表示'), :show_replied_icon). |
53 | 55 |
tooltip(_("リプライを返したつぶやきのアイコン上に、リプライボタンを隠さずにずっと表示しておきます。")) |
core/userconfig.rb | ||
---|---|---|
103 | 103 |
:mumble_self_bg => [65535, 65535, 255*222], |
104 | 104 |
:mumble_selected_bg => [255*222, 255*222, 65535], |
105 | 105 | |
106 |
:tl_icon_size => 48, |
|
107 | ||
106 | 108 |
# 右クリックメニューの並び順 |
107 | 109 |
:mumble_contextmenu_order => ['copy_selected_region', |
108 | 110 |
'copy_description', |