aboutsummaryrefslogtreecommitdiff
path: root/ide/session.ml
diff options
context:
space:
mode:
authorHugo Herbelin2018-11-19 15:37:14 +0100
committerVincent Laporte2019-03-19 08:40:20 +0000
commitb373967afc2ba95fdeb850c1af9c89637a2afbb4 (patch)
tree58a891bd999cf0eb82774d989c91f017ce67d109 /ide/session.ml
parenta68bc1f4211f089f6030bf44d3f5df88db170c18 (diff)
CoqIDE: Use modify_bg rather than modify_base to change background color.
The effect of modify_base is told to be widget-dependent. It uses to change the background with gtk2 but not with gtk3. So we use the more explicit modify_bg.
Diffstat (limited to 'ide/session.ml')
-rw-r--r--ide/session.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ide/session.ml b/ide/session.ml
index 22aaef399d..fd21515ca5 100644
--- a/ide/session.ml
+++ b/ide/session.ml
@@ -257,7 +257,7 @@ let make_table_widget ?sort cd cb =
~model:store ~packing:frame#add () in
let () = data#set_headers_visible true in
let () = data#set_headers_clickable true in
- let refresh clr = data#misc#modify_base [`NORMAL, `NAME clr] in
+ let refresh clr = data#misc#modify_bg [`NORMAL, `NAME clr] in
let _ = background_color#connect#changed ~callback:refresh in
let _ = data#misc#connect#realize ~callback:(fun () -> refresh background_color#get) in
let mk_rend c = GTree.cell_renderer_text [], ["text",c] in