]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix default value of scroll bar frame parameters on Android
authorPo Lu <luangruo@yahoo.com>
Sat, 22 Jul 2023 00:32:59 +0000 (08:32 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 22 Jul 2023 00:32:59 +0000 (08:32 +0800)
* src/androidfns.c (Fx_create_frame): Default
Qvertical_scroll_bars to Qnil, but set scroll-bar-width and
scroll-bar-height.

src/androidfns.c

index 11ed2e6c00ac1bb5d816821f8d45f8728ade2a27..dcc9ab834277b83859ac059cb8cacd5aba5a3aaf 100644 (file)
@@ -916,8 +916,10 @@ DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
   gui_default_parameter (f, parms, Qbottom_divider_width, make_fixnum (0),
                          NULL, NULL, RES_TYPE_NUMBER);
 
-  gui_default_parameter (f, parms, Qvertical_scroll_bars,
-                         Qleft,
+  /* `vertical-scroll-bars' defaults to nil on Android as a
+     consequence of scroll bars not being supported at all.  */
+
+  gui_default_parameter (f, parms, Qvertical_scroll_bars, Qnil,
                          "verticalScrollBars", "ScrollBars",
                          RES_TYPE_SYMBOL);
   gui_default_parameter (f, parms, Qhorizontal_scroll_bars, Qnil,
@@ -1034,14 +1036,12 @@ DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
                          "cursorType", "CursorType", RES_TYPE_SYMBOL);
   /* Scroll bars are not supported on Android, as they are near
      useless.  */
-#if 0
   gui_default_parameter (f, parms, Qscroll_bar_width, Qnil,
                          "scrollBarWidth", "ScrollBarWidth",
                          RES_TYPE_NUMBER);
   gui_default_parameter (f, parms, Qscroll_bar_height, Qnil,
                          "scrollBarHeight", "ScrollBarHeight",
                          RES_TYPE_NUMBER);
-#endif
   gui_default_parameter (f, parms, Qalpha, Qnil,
                          "alpha", "Alpha", RES_TYPE_NUMBER);
   gui_default_parameter (f, parms, Qalpha_background, Qnil,