Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey

Questions tagged [visibility]

Visibility is an attribute of an object. It may refer to the concept of having something visible (or not) on the graphical interface, or a symbol visibility in linkage. This tag should not be used in place of the more specific tags [memory-visibility] or [class-visibility].

visibility
0 votes
1 answer
70 views

How can I make an element stop glitching if it gains visibility when another element behind it is hovered?

I have two divs; let's call them div 1 and div 2 and the one on top of the other is set to visibility:hidden: Basically the info div is supposed to appear whenever you hover the other one. That part ...
poppy pelt's user avatar
0 votes
1 answer
115 views

How can I make my Flutter application visible to users with Gmail.com email addresses on the Google Play Store?

I have recently deployed my Flutter application to the production mode on the Google Play Store. The application is targeted for 177 countries and should be available to all users, regardless of their ...
ASMA's user avatar
  • 89
0 votes
0 answers
22 views

DOM Operation Unsuccessful - Show HTML in Element

Working code here is mixed with non-working code. The code works up until the line where it commands the innerText to be of x.innerHTML.substring(3,-3) This is the function I am calling on a click ...
Anthony Pulse's user avatar
0 votes
0 answers
67 views

Having trouble getting button visibility to work with view binding

Here is the github link: https://github.com/dunow0033/BudgetTracker Here is the XML for a button for updating a budget entry: <Button android:id="@+id/updateBtn" android:...
bradd's user avatar
  • 11
1 vote
1 answer
839 views

Allowing binary in the same crate to use library's modules but disallowing external crates to use the same modules

I have three files under the src directory: src |____ keys.rs // a 'sub-module' under `lib.rs` |____ lib.rs |____ main.rs // binary file In my cargo.toml, I specify specifically the paths to the lib ...
Jim's user avatar
  • 699
1 vote
1 answer
181 views

Strip symbols from static library, or import only specific symbols during linking

The setup is the same as in my other question here. I thought a bit more about the problem, and it turns out, of all symbols exported from the libraries I'm using, I only need a few of them. In the ...
swineone's user avatar
  • 2,684
1 vote
2 answers
782 views

Rust idiom for exposing public fields while restricting direct struct construction

I know of the visibility rules in Rust and the typical 'constructor' patterns in Rust, e.g. via associated functions, commonly named as new or if all fields of the struct are public, via 'direct' ...
Jim's user avatar
  • 699
3 votes
1 answer
128 views

Can BlockingQueue make MemorySegment visible for multiple threads?

I am using JDK20's FFI, and I need to pass a Object to a BlockingQueue to shared it from one thread to another. The Object contains several MemorySegment field, which belongs to Arena.openShared(). ...
benrush's user avatar
  • 187
0 votes
1 answer
205 views

TCL - invalid command name ... but different

I try to add two buttons to the console window for convenience and to play around with it. The problem is: The first button just triggers an "exit". This works fine. The second button ...
dietmar bos's user avatar
0 votes
1 answer
310 views

Toggle visibility of the meshes from the scene in Three.js

I have faced with an issue. when I set the cubes' visible property to false. It is hiding the mesh from the user, but it is actual place is staying there and preventing from clicking the another mesh ...
Asadbek Eshboev's user avatar
2 votes
1 answer
165 views

UML classes diagram the question of relations and visibility of fields

I have a few questions regarding my design after having reviewed a number of information sources. I decided to link the User and UserSettings classes with a composition relation (since user settings ...
Smth_Unknown's user avatar
0 votes
0 answers
115 views

Override fvisibility in Fortran routine

In a shared object, I can make my Fortran routines unavailable from outside using -fvisibility=hidden. In C/C++ you can override this setting in your routines by void __attribute__ ((visibility("...
Mads M Pedersen's user avatar
0 votes
0 answers
177 views

SSRS Report Incorrectly Displays Conditionally Hidden Tablix After a Hidden Subgroup is Toggled on a Separate Tablix

My SSRS report has multiple Tablix elements. Their visibility is conditional to the content of the datasets they use. It works as intended when first displayed. When the dataset is empty, the Tablix ...
ETS333's user avatar
  • 1
0 votes
1 answer
29 views

How can I make a control invisible with code in a Python FMX GUI App?

I made the following GUI in DelphiFMX for Python that contains two buttons and a rectangle. I simply want to hide and show the rectangle with the button clicks: What I've tried doing so far is: def ...
Shaun Roselt's user avatar
  • 3,028
0 votes
1 answer
254 views

Access Private Variable in Solidity

I already have searched for my question on Stack Overflow and on the documentation (https://docs.soliditylang.org/en/develop/contracts.html#visibility-and-getters), but I am not sure of the answer. To ...
luca gualandi's user avatar

15 30 50 per page
1
3 4
5
6 7
213