egandro

Results 82 comments of egandro

I found this: https://www.tekrevue.com/tip/mac-vm-boot-recovery-mode-vmware-fusion/ ``` macosguest.forceRecoveryModeInstall = "TRUE" ``` Boots the VM in OSX Recovery Mode. This opens the door to an elevated terminal.

So this works. OSX gets into Recovery. I have a theory - this might be the offset in the nvram that needs to be patched: ``` < 00002200: 0000 0000...

I put a few more hours in this investigating what the "magic bits" are in the NVRAM. 1. I created a fresh OSX install - backuped the nvram 2. I...

> The `macosguest.forceRecoveryModeInstall = "TRUE"` setting is for VMware Fusion, not Virtualbox, but I also haven't tested that method, either. This works - however - after doing that you can't...

Ok I have a solution. We should consider adding this to macinbox (by running it in a chroot envirorment). OSX has profiles support - so it allows us to tweak...

I debugged this: mPopupWindow.showAtLocation(mRootView, Gravity.NO_GRAVITY, mRootView.getWidth(), mRootView.getHeight()); The mRootView of my button is the Toplevel Window. It is called with height = 1920, width = 1200 Which isn't the center...

I personally think we need something like this: int pos[] = new int[2]; view.getLocationOnScreen(pos); // or this getLocationInWindow() popupWindow.showAtLocation(view.getRootView(), Gravity.NO_GRAVITY, pos[0], pos[1]);

Thx for pointing me to the calculation function. I'll try hunting the bug ;) It's somehow strange only on the Nvidia Shield K1 (7" / 2015 / 7.0) there is...

Hey! I got a hint from a friend. It might be this flag: https://developer.android.com/reference/android/widget/PopupWindow.html#attr_android:overlapAnchor Can you give it a try? Thx.

Thx man! I'll give it a try. In a view minutes.