Skip to content
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
1 change: 1 addition & 0 deletions src/main/assets/changelog-alpha.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/Alpha 360 (2025-04-21)
Added video frame step controls (thanks to ecawthorne and japanesephundroid)
Make floating toolbar buttons respond to left handed mode (thanks to ecawthorne)

/Alpha 359 (2025-04-20)
Added support for emotes in comment flairs (thanks to bharatknv)
Expand Down
1 change: 1 addition & 0 deletions src/main/assets/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Show label on crossposts, and add "Go to Crosspost Origin" to post menu (thanks
Added "Mark as Read/Unread" fling action, and optional post menu item (thanks to JoshAusHessen and codeofdusk)
Added preference to prevent posts being marked as read when clicked (thanks to Daniel Ho)
Remove random subreddit feature which is no longer supported by Reddit (thanks to Mark Yu)
Make floating toolbar buttons respond to left handed mode (thanks to ecawthorne)
Codebase improvements: fixed deprecations (thanks to Alexey Rochev)

113/1.24.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,13 @@ public void onNotAnImage() {
outerFrame,
false));

if (PrefsUtility.pref_appearance_left_handed()) {
final FrameLayout.LayoutParams toolBarParams =
(FrameLayout.LayoutParams) mFloatingToolbar.getLayoutParams();
toolBarParams.gravity = Gravity.START | Gravity.BOTTOM;
mFloatingToolbar.setLayoutParams(toolBarParams);
}

outerFrame.addView(mFloatingToolbar);

mFloatingToolbar.setVisibility(View.GONE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import android.content.Context;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
Expand Down Expand Up @@ -195,6 +196,13 @@ public CommentListingFragment(
mOverlayFrame,
false);

if (PrefsUtility.pref_appearance_left_handed()) {
final FrameLayout.LayoutParams toolBarParams =
(FrameLayout.LayoutParams) mFloatingToolbar.getLayoutParams();
toolBarParams.gravity = Gravity.START | Gravity.BOTTOM;
mFloatingToolbar.setLayoutParams(toolBarParams);
}

// We need a container so that setVisible() doesn't mess with the Z-order
final FrameLayout floatingToolbarContainer = new FrameLayout(context);

Expand Down
Loading