BabylonJs textblock disappeared after camera goes through the object - camera

Refer to the example below, if you press Up arrow key and let the camera go through the sphere and the plane and press Down arrow to go back, the text block disappeared.
Is this a bug in BabylonJs? How to fix this issue?
http://www.babylonjs-playground.com/#XCPP9Y#160

It is a bug. I'll fix it asap (probably this Monday:))

Related

When you press tab icon no not respond

But when pressing a long distance from icon work normally.
Imgur
I would suggest adding padding. Also, check your container's styles.

JetBrains IDEs scrolling on touchscreen

I'm having a problem scrolling in all the JetBrains IDEs (PyCharm, PhpStorm) using touch screen. I have a Dell XPS 15 with a touchscreen.
When I try to scroll it just selects code. I have tried in regular Notepad and Notepad++ and there works as expected.
Has anyone else experienced it? Is there any solution to this? It would be really great to scroll through the code using touchscreen.
I have found temporary solution by installing plugin Code glance (https://plugins.jetbrains.com/plugin/7275). The plugin provides a sidebar with code map, which is similar to the one from Sublime. In the sidebar it is possible to navigate through code. It is not ideal but it's better than nothing.
Yes, I was having the same problem. And luckily I got a gesture to scroll using two fingers:
Scroll up: Tap and hold using one finger and swipe away[from close to distant of the first finger] using another finger. Swiping away from each other also works.
Scroll Down: Tap and hold using one finger and swipe in[from distant to close of the first finger] using another finger. Swiping close to each other also works.

XCode Show Focus Ring

I have a NSButton in my XCode project which gets enabled and disabled.
When it gets enabled, the user doesn't really notice, nothing stands out, the text just goes from grey to black.
What I'd like to happen, is to manually show the button's focus ring, or any other type of highlight when the button gets enabled. I've looked online and I can't find anything, leaving me to think it can't be done?
Can anyone help?
I'd imagine it'd be something as simple as:
[myButton setFocusRing:visible];
Thanks everyone.
[window makeFirstResponder:theButton];
should do it.
Change following setting.Go to System Preferences >> Keyboard >> Shortcuts tab >>Enable "All controls" radio button in bottom left corner.

DirectionsRenderer disable on click GMaps v3

I have a DirectionsRenderer sitting inside a Dojo ContentPane.
When I click on a step in the directions, it zooms into the wrong area.
Can I disable this or fix the boundaries so it works properly?
It looks like a bug in the API to zoom to the wrong area when infowindows are disabled. I reenabled them and the zooming works.

Weird behavior of webView

I've got an app with a webview. It was working great, and then I moved the webView into an NSSplitView. Now it seems for some reason that whenever I press any key to enter text into the webview, it scrolls down. I haven't a clue as to what could cause this. Please help!
Figured it out... the webview was a pixel or so outside the bounds of the view it was inside of. I haven't any idea why that caused what it did, but when I put it back within the view's bounds, the problem went away. Weird.