Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #14053 #3

Merged
merged 2 commits into from
May 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ Dependencies can be installed (for a gcc2hybrid version) via:
libxslt_x86_devel icu_x86_devel icu_devel perl python ruby_x86 \
libexecinfo_x86_devel libwebp_x86_devel lighttpd_x86 php \
pkgconfig_x86 pywebsocket gnutls36_x86 gnutls36_x86_devel

##### NOTE :
If you get an _Ruby missng error_ even after you have installed ruby, similar to <br>`Could NOT find Ruby (missing: RUBY_INCLUDE_DIR RUBY_LIBRARY RUBY_CONFIG_INCLUDE_DIR) (found suitable version "2.2.0", minimum required is "1.9")`, you can skip that.


Or, if you build Haiku from source you can add the packages to your UserBuildConfig:

Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/platform/haiku/ScrollbarThemeHaiku.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ void ScrollbarThemeHaiku::paintThumb(GraphicsContext& context, Scrollbar& scroll

BRect drawRect = BRect(rect);
BView* view = context.platformContext();
rgb_color base = ui_color(B_PANEL_BACKGROUND_COLOR);
rgb_color base = ui_color(B_SCROLL_BAR_THUMB_COLOR);
rgb_color dark2 = tint_color(base, B_DARKEN_2_TINT);
rgb_color dark3 = tint_color(base, B_DARKEN_3_TINT);

Expand Down